patch didn't apply correctly, try again

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@1333 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 1998-10-21 03:57:57 +00:00
parent d1a8cb322f
commit 8d44a9088f
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#include "helperfuncs.h"
FILE *
get_fileptr_stdin() {
return stdin;
}
FILE *
get_fileptr_stdout() {
return stdout;
}
FILE *
get_fileptr_stderr() {
return stderr;
}

View File

@ -0,0 +1,10 @@
#ifndef __HELPERFUNCS_H__
#define __HELPERFUNCS_H__
#include <stdio.h>
FILE *get_fileptr_stdin();
FILE *get_fileptr_stdout();
FILE *get_fileptr_stderr();
#endif