X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fsrand.c;h=39c37ecab04389fc94ec1f3dd78de1bd3a2b1443;hb=c5c4350d2beb1ebe93f3f6d45643a64eed2a7c7a;hp=f207de87f9514bd2bbda077de168105993b48dba;hpb=8a210237d6ac0dfb36ca14b5aebe8be2b967b9e6;p=pdclib diff --git a/functions/stdlib/srand.c b/functions/stdlib/srand.c index f207de8..39c37ec 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,11 @@ void srand( unsigned int seed ) #endif #ifdef TEST -#include <_PDCLIB_test.h> -int main() +#include "_PDCLIB_test.h" + +int main( void ) { - BEGIN_TESTS; /* tested in rand.c */ return TEST_RESULTS; }