X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdlib%2Frand.c;h=abe58f6fd9e2bf17ccd5adccfce5326d8138f1a7;hb=refs%2Ftags%2FOLD;hp=967ae2fcff1e24b5653c15a3830198285db3658a;hpb=0a5395faab237ba9008352b0f4bee9659bbd3d5f;p=pdclib diff --git a/functions/stdlib/rand.c b/functions/stdlib/rand.c index 967ae2f..abe58f6 100644 --- a/functions/stdlib/rand.c +++ b/functions/stdlib/rand.c @@ -1,9 +1,9 @@ -// ---------------------------------------------------------------------------- -// $Id$ -// ---------------------------------------------------------------------------- -// Public Domain C Library - http://pdclib.sourceforge.net -// This code is Public Domain. Use, modify, and redistribute at will. -// ---------------------------------------------------------------------------- +/* ---------------------------------------------------------------------------- + * $Id$ + * ---------------------------------------------------------------------------- + * Public Domain C Library - http://pdclib.sourceforge.net + * This code is Public Domain. Use, modify, and redistribute at will. + * --------------------------------------------------------------------------*/ int rand( void ) { /* TODO */ }; void srand( unsigned int seed ) { /* TODO */ };