]> pd.if.org Git - pdclib/blobdiff - functions/stdio/vsprintf.c
Removed old files.
[pdclib] / functions / stdio / vsprintf.c
diff --git a/functions/stdio/vsprintf.c b/functions/stdio/vsprintf.c
deleted file mode 100644 (file)
index e17f6ff..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 vsprintf( char * restrict s, const char * restrict format, va_list ap) { /* TODO */ };
-
-/* PDPC code - unreviewed
-{
-    int ret;
-
-    ret = vvprintf(format, arg, NULL, s);
-    if (ret >= 0)
-    {
-        *(s + ret) = '\0';
-    }
-    return (ret);
-}
-*/