diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-29 00:50:10 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-29 00:50:10 +0000 |
commit | d24608f995e83aa4ac5557cd1a084cac55a71a3c (patch) | |
tree | bd85ca3d38df362786a2ff156f8efd0c8d628f74 /libc/stdlib/random.c | |
parent | 57eac0f84b7fe02eee8607eff91051eeef6e74ba (diff) |
Hiding again
Diffstat (limited to 'libc/stdlib/random.c')
-rw-r--r-- | libc/stdlib/random.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libc/stdlib/random.c b/libc/stdlib/random.c index b0a00e15c..833877039 100644 --- a/libc/stdlib/random.c +++ b/libc/stdlib/random.c @@ -22,6 +22,9 @@ * Rewritten to use reentrant functions by Ulrich Drepper, 1995. */ +#define random_r __random_r +#define srandom_r __srandom_r + #define _GNU_SOURCE #include <features.h> #include <limits.h> @@ -243,7 +246,7 @@ char * setstate (char *arg_state) rear pointers can't wrap on the same call by not testing the rear pointer if the front one has wrapped. Returns a 31-bit random number. */ -long int random () +long int attribute_hidden __random () { int32_t retval; @@ -252,4 +255,4 @@ long int random () __pthread_mutex_unlock(&lock); return retval; } - +strong_alias(__random,random) |