]> pd.if.org Git - pdclib/blobdiff - functions/stdio/sscanf.c
Comment cleanups.
[pdclib] / functions / stdio / sscanf.c
index dc343b863170646edaaa74ad7870cc7bd160f6f4..88876328d76dfc4abe2dfce10c01b58c9ca8b572 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* sscanf( const char *, const char *, ... )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -31,7 +29,7 @@ int sscanf( const char * _PDCLIB_restrict s, const char * _PDCLIB_restrict forma
 
 #define testscanf( s, format, ... ) sscanf( s, format, __VA_ARGS__ )
 
-int main()
+int main( void )
 {
     char source[100];
 #include "scanf_testcases.h"