X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=functions%2Fstdio%2Fvsprintf.c;h=308b71051456e751b2211cb05b614946932b8a70;hp=6baa9120feb91aeae6ed1d0405f690c8c4649efa;hb=0d54a75af25ca44411e7c4190cc2a93a390e61a2;hpb=18af9d0a4cd252433e0cbd5daf4640e325c9d0ab diff --git a/functions/stdio/vsprintf.c b/functions/stdio/vsprintf.c index 6baa912..308b710 100644 --- a/functions/stdio/vsprintf.c +++ b/functions/stdio/vsprintf.c @@ -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 */