]> pd.if.org Git - pdclib/blobdiff - functions/stdio/vsprintf.c
PDCLIB-16: Add _unlocked variations of all I/O routines; move work into these versions
[pdclib] / functions / stdio / vsprintf.c
index 3dfe3c208505fefd5a99bfe8031d10bc92870efe..5f08688b7c00825e36eaaa2914f86ccb4cbfa261 100644 (file)
@@ -12,7 +12,9 @@
 
 #ifndef REGTEST
 
-int vsprintf( char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, va_list arg )
+int vsprintf( char * _PDCLIB_restrict s, 
+              const char * _PDCLIB_restrict format, 
+              va_list arg )
 {
     return vsnprintf( s, SIZE_MAX, format, arg ); /* TODO: Replace with a non-checking call */
 }