ressurect from the dead

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4991 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 2001-07-25 02:06:05 +00:00
parent dfaf57ac5a
commit 87a8e216c9
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