From c885bf5cf94a12202f849477a845d728cbd12889 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Sat, 3 Dec 2005 00:34:49 +0000 Subject: More hiding, including __mempcpy --- libc/stdlib/nrand48_r.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'libc/stdlib/nrand48_r.c') diff --git a/libc/stdlib/nrand48_r.c b/libc/stdlib/nrand48_r.c index 89f098e75..f72c07030 100644 --- a/libc/stdlib/nrand48_r.c +++ b/libc/stdlib/nrand48_r.c @@ -22,10 +22,7 @@ extern int __drand48_iterate(unsigned short xsubi[3], struct drand48_data *buffer) attribute_hidden; -int nrand48_r (xsubi, buffer, result) - unsigned short int xsubi[3]; - struct drand48_data *buffer; - long int *result; +int attribute_hidden __nrand48_r (unsigned short int xsubi[3], struct drand48_data *buffer, long int *result) { /* Compute next state. */ if (__drand48_iterate (xsubi, buffer) < 0) @@ -39,3 +36,4 @@ int nrand48_r (xsubi, buffer, result) return 0; } +strong_alias(__nrand48_r,nrand48_r) -- cgit v1.2.3