plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 623979856321b997ebd32386eb2fbb3302aa33ad
parent 7ee1ac96893a000763b937ed03a51bba61acedbe
Author: wkj <devnull@localhost>
Date:   Wed, 29 Dec 2004 01:33:33 +0000

Use #define to move rand and srand to p9rand and p9srand.

Diffstat:
Minclude/libc.h | 10+++++++---
1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/include/libc.h b/include/libc.h @@ -234,11 +234,15 @@ extern int quoterunestrfmt(Fmt*); extern int needsrcquote(int); /* - * random number (in <stdlib.h>) - * + * random number (also in <stdlib.h>) + */ +#ifndef NOPLAN9DEFINES +#define rand p9rand +#define srand p9srand +#endif + extern void srand(long); extern int rand(void); - */ extern int nrand(int); extern long lrand(void); extern long lnrand(long);