]> pd.if.org Git - pdclib/blobdiff - functions/stdio/vsprintf.c
restrict keyword cleanup.
[pdclib] / functions / stdio / vsprintf.c
index 308b71051456e751b2211cb05b614946932b8a70..9f6cdd2a7d1a33f51336242209009baa43b00298 100644 (file)
@@ -12,9 +12,9 @@
 
 #ifndef REGTEST
 
-int vsprintf( char * str, const char * format, va_list arg )
+int vsprintf( char * _PDCLIB_restrict s, const char * _PDCLIB_restrict format, va_list arg )
 {
-    return vsnprintf( str, SIZE_MAX, format, arg ); /* TODO: Replace with a non-checking call */
+    return vsnprintf( s, SIZE_MAX, format, arg ); /* TODO: Replace with a non-checking call */
 }
 
 #endif