]> pd.if.org Git - pdclib/blob - functions/stdio/freopen.c
2619eea9388ffd233b9c6e3fa309f0f06039c52d
[pdclib] / functions / stdio / freopen.c
1 /* ----------------------------------------------------------------------------
2  * $Id$
3  * ----------------------------------------------------------------------------
4  * Public Domain C Library - http://pdclib.sourceforge.net
5  * This code is Public Domain. Use, modify, and redistribute at will.
6  * --------------------------------------------------------------------------*/
7
8 FILE * freopen( const char * restrict filename, const char * restrict mode, FILE * stream ) { /* TODO */ };
9
10 /* PDPC code - unreviewed
11 {
12     fclose(stream);
13     return (fopen(filename, mode));
14 }
15 */