X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Fsrand.c;h=14422330c72591023334b89e7125143ce67a7201;hb=cd6cfe0f578c4f744ddc9a342243aff6b42f8027;hp=f207de87f9514bd2bbda077de168105993b48dba;hpb=018bb4d66e9e10c0dc17e6f5f4f91b875dc2c151;p=pdclib.old diff --git a/functions/stdlib/srand.c b/functions/stdlib/srand.c index f207de8..1442233 100644 --- a/functions/stdlib/srand.c +++ b/functions/stdlib/srand.c @@ -1,7 +1,5 @@ /* $Id$ */ -/* Release $Name$ */ - /* srand( unsigned int ) This file is part of the Public Domain C Library (PDCLib). @@ -22,9 +20,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; }