]> pd.if.org Git - pdclib/blobdiff - functions/stdio/setbuf.c
Removed old files.
[pdclib] / functions / stdio / setbuf.c
diff --git a/functions/stdio/setbuf.c b/functions/stdio/setbuf.c
deleted file mode 100644 (file)
index 163f1f5..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-/* ----------------------------------------------------------------------------
- * $Id$
- * ----------------------------------------------------------------------------
- * Public Domain C Library - http://pdclib.sourceforge.net
- * This code is Public Domain. Use, modify, and redistribute at will.
- * --------------------------------------------------------------------------*/
-
-void setbuf( FILE * restrict stream, char * restrict buf ) { /* TODO */ };
-
-/* PDPC code - unreviewed
-{
-    int ret;
-
-    if (buf == NULL)
-    {
-        ret = setvbuf(stream, NULL, _IONBF, 0);
-    }
-    else
-    {
-        ret = setvbuf(stream, buf, _IOFBF, BUFSIZ);
-    }
-    return (ret);
-}
-*/