]> pd.if.org Git - pdclib/blobdiff - functions/stdio/puts.c
Removed old files.
[pdclib] / functions / stdio / puts.c
diff --git a/functions/stdio/puts.c b/functions/stdio/puts.c
deleted file mode 100644 (file)
index 3c819dd..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-/* ----------------------------------------------------------------------------
- * $Id$
- * ----------------------------------------------------------------------------
- * Public Domain C Library - http://pdclib.sourceforge.net
- * This code is Public Domain. Use, modify, and redistribute at will.
- * --------------------------------------------------------------------------*/
-
-int puts( const char * s ) { /* TODO */ };
-
-/* PDPC code - unreviewed
-{
-    int ret;
-
-    ret = fputs(s, stdout);
-    if (ret == EOF)
-    {
-        return (ret);
-    }
-    return (putc('\n', stdout));
-}
-*/