]> pd.if.org Git - pdclib/blobdiff - functions/stdio/perror.c
Removed old files.
[pdclib] / functions / stdio / perror.c
diff --git a/functions/stdio/perror.c b/functions/stdio/perror.c
deleted file mode 100644 (file)
index d85cd64..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/* ----------------------------------------------------------------------------
- * $Id$
- * ----------------------------------------------------------------------------
- * Public Domain C Library - http://pdclib.sourceforge.net
- * This code is Public Domain. Use, modify, and redistribute at will.
- * --------------------------------------------------------------------------*/
-
-void perror( const char * s ) { /* TODO */ };
-
-/* PDPC code - unreviewed
-{
-    if ((s != NULL) && (*s != '\0'))
-    {
-        printf("%s: ");
-    }
-    if (errno == 0)
-    {
-        printf("No error has occurred\n");
-    }
-    else
-    {
-        printf("An error has occurred\n");
-    }
-    return;
-}
-*/