]> pd.if.org Git - pdclib/blobdiff - functions/stdio/vsprintf.c
Merged branch stdio_rewrite back into trunk.
[pdclib] / functions / stdio / vsprintf.c
index 6baa9120feb91aeae6ed1d0405f690c8c4649efa..308b71051456e751b2211cb05b614946932b8a70 100644 (file)
@@ -12,8 +12,6 @@
 
 #ifndef REGTEST
 
-int foo = SIZE_MAX;
-
 int vsprintf( char * str, const char * format, va_list arg )
 {
     return vsnprintf( str, SIZE_MAX, format, arg ); /* TODO: Replace with a non-checking call */