]> pd.if.org Git - pdclib/blobdiff - functions/stdio/freopen.c
Removed old files.
[pdclib] / functions / stdio / freopen.c
diff --git a/functions/stdio/freopen.c b/functions/stdio/freopen.c
deleted file mode 100644 (file)
index 2619eea..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/* ----------------------------------------------------------------------------
- * $Id$
- * ----------------------------------------------------------------------------
- * Public Domain C Library - http://pdclib.sourceforge.net
- * This code is Public Domain. Use, modify, and redistribute at will.
- * --------------------------------------------------------------------------*/
-
-FILE * freopen( const char * restrict filename, const char * restrict mode, FILE * stream ) { /* TODO */ };
-
-/* PDPC code - unreviewed
-{
-    fclose(stream);
-    return (fopen(filename, mode));
-}
-*/