Further streamlined testing.
[fw/pdclib] / functions / stdio / snprintf.c
index a2d8441bae9900a145b9e0ce0eb77106b30ad304..a34558992e5b84a717282dc5da67a976cdaeec8b 100644 (file)
@@ -31,6 +31,8 @@ int snprintf( char * _PDCLIB_restrict s, size_t n, const char * _PDCLIB_restrict
 
 #define testprintf( s, n, format, ... ) snprintf( s, n, format, __VA_ARGS__ )
 
+#define TESTCASE_SPRINTF( x ) TESTCASE( x )
+
 int main( void )
 {
     char buffer[100];