diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-08 11:34:36 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-08 11:34:36 +0000 |
commit | 38839d31eb0e216bed0ed1a8ea036e46ea696c1c (patch) | |
tree | 26bcaa01e1ff7a3497e7e235448a309ac9826cf7 /libc/stdlib/seed48.c | |
parent | 75b19c0d76d016c521dcd9dddde1127818fdbc52 (diff) |
hide internal __libc_drand48_data symbol
Diffstat (limited to 'libc/stdlib/seed48.c')
-rw-r--r-- | libc/stdlib/seed48.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdlib/seed48.c b/libc/stdlib/seed48.c index 3de07aa31..eec56cd21 100644 --- a/libc/stdlib/seed48.c +++ b/libc/stdlib/seed48.c @@ -22,7 +22,7 @@ #include <stdlib.h> /* Global state for non-reentrant functions. Defined in drand48-iter.c. */ -extern struct drand48_data __libc_drand48_data; +extern struct drand48_data __libc_drand48_data attribute_hidden; unsigned short int * seed48 (unsigned short int seed16v[3]) |