X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fsrand.c;h=3478cb09df60a87ec460f1254d173b929b472083;hb=d6f1494a4f38a212b29a13ee713885058dcf0fe7;hp=f207de87f9514bd2bbda077de168105993b48dba;hpb=8a210237d6ac0dfb36ca14b5aebe8be2b967b9e6;p=pdclib diff --git a/functions/stdlib/srand.c b/functions/stdlib/srand.c index f207de8..3478cb0 100644 --- a/functions/stdlib/srand.c +++ b/functions/stdlib/srand.c @@ -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; }