]> pd.if.org Git - pdclib/blobdiff - functions/string/memset.c
Comment cleanups.
[pdclib] / functions / string / memset.c
index 4abb466ebd763b5ef8cdfcdcc91a96037e8c4729..4ee2826df79c300c856fd4cfa58214430de9c4a2 100644 (file)
@@ -1,7 +1,3 @@
-/* $Id$ */
-
-/* Release $Name$ */
-
 /* memset( void *, int, size_t )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -27,10 +23,9 @@ void * memset( void * s, int c, size_t n )
 #ifdef TEST
 #include <_PDCLIB_test.h>
 
-int main()
+int main( void )
 {
     char s[] = "xxxxxxxxx";
-    BEGIN_TESTS;
     TESTCASE( memset( s, 'o', 10 ) == s );
     TESTCASE( s[9] == 'o' );
     TESTCASE( memset( s, '_', 0 ) == s );