]> pd.if.org Git - pdclib/blobdiff - functions/stdio/ungetc.c
Removed old files.
[pdclib] / functions / stdio / ungetc.c
diff --git a/functions/stdio/ungetc.c b/functions/stdio/ungetc.c
deleted file mode 100644 (file)
index 1bd7323..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/* ----------------------------------------------------------------------------
- * $Id$
- * ----------------------------------------------------------------------------
- * Public Domain C Library - http://pdclib.sourceforge.net
- * This code is Public Domain. Use, modify, and redistribute at will.
- * --------------------------------------------------------------------------*/
-
-int ungetc( int c, FILE * stream ) { /* TODO */ };
-
-/* PDPC code - unreviewed
-{
-    if ((stream->ungetCh != -1) || (c == EOF))
-    {
-        return (EOF);
-    }
-    stream->ungetCh = (unsigned char)c;
-    stream->quickText = 0;
-    return ((unsigned char)c);
-}
-*/