]> pd.if.org Git - pdclib/blobdiff - functions/stdio/vsprintf.c
Temporary patching for stdio development.
[pdclib] / functions / stdio / vsprintf.c
index 27e41d8cf715b01a14f4c4691968e695747a0d3c..5276e3920a6278b406d32aa3d3c89faa1fcea027 100644 (file)
 
 #ifndef REGTEST
 
-int vsprintf( char * str, const char * format, _PDCLIB_va_list arg )
+int foo = SIZE_MAX;
+
+int vsprintf( char * str, const char * format, va_list arg )
 {
-    return vsnprintf( str, SIZE_MAX, format, arg );
+    return vsnprintf( str, SIZE_MAX, format, arg ); /* TODO: Replace with a non-checking call */
 }
 
 #endif