]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/srand.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdlib / srand.c
index f207de87f9514bd2bbda077de168105993b48dba..3478cb09df60a87ec460f1254d173b929b472083 100644 (file)
@@ -1,7 +1,3 @@
-/* $Id$ */
-
-/* Release $Name$ */
-
 /* srand( unsigned int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -20,11 +16,10 @@ void srand( unsigned int seed )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
-int main()
+int main( void )
 {
-    BEGIN_TESTS;
     /* tested in rand.c */
     return TEST_RESULTS;
 }