]> pd.if.org Git - pdclib/blobdiff - functions/stdio/tmpnam.c
Removed old files.
[pdclib] / functions / stdio / tmpnam.c
diff --git a/functions/stdio/tmpnam.c b/functions/stdio/tmpnam.c
deleted file mode 100644 (file)
index 69edae7..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-/* ----------------------------------------------------------------------------
- * $Id$
- * ----------------------------------------------------------------------------
- * Public Domain C Library - http://pdclib.sourceforge.net
- * This code is Public Domain. Use, modify, and redistribute at will.
- * --------------------------------------------------------------------------*/
-
-char * tmpnam( char * s ) { /* TODO */ };
-
-/* PDPC code - unreviewed
-{
-    static char buf[] = "ZZZZZZZA.$$$";
-
-    buf[7]++;
-    if (s == NULL)
-    {
-        return (buf);
-    }
-    strcpy(s, buf);
-    return (s);
-}
-*/