]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/srand.c
Comment cleanups.
[pdclib] / functions / stdlib / srand.c
index f207de87f9514bd2bbda077de168105993b48dba..5127fd9698426c7da2c484ec6a9085a350a0a290 100644 (file)
@@ -1,7 +1,3 @@
-/* $Id$ */
-
-/* Release $Name$ */
-
 /* srand( unsigned int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -22,9 +18,8 @@ void srand( unsigned int seed )
 #ifdef TEST
 #include <_PDCLIB_test.h>
 
-int main()
+int main( void )
 {
-    BEGIN_TESTS;
     /* tested in rand.c */
     return TEST_RESULTS;
 }