]> pd.if.org Git - pdclib/blobdiff - functions/stdio/rewind.c
Removed old files.
[pdclib] / functions / stdio / rewind.c
diff --git a/functions/stdio/rewind.c b/functions/stdio/rewind.c
deleted file mode 100644 (file)
index b893086..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.
- * --------------------------------------------------------------------------*/
-
-void rewind( FILE * stream ) { /* TODO */ };
-
-/* PDPC code - unreviewed
-{
-    fseek(stream, 0L, SEEK_SET);
-    return;
-}
-*/