diff options
author | jasone <jasone@FreeBSD.org> | 2000-03-16 02:14:41 +0000 |
---|---|---|
committer | jasone <jasone@FreeBSD.org> | 2000-03-16 02:14:41 +0000 |
commit | 23c4215cb0e4dd315f6b1873c3004247d76e088a (patch) | |
tree | a5db3308f49350af42e8ac76a1fad86691cde069 /lib/libc/gen/wait.c | |
parent | d073c75df5afca85c621a7f89f1e1ff45a1835b4 (diff) | |
download | FreeBSD-src-23c4215cb0e4dd315f6b1873c3004247d76e088a.zip FreeBSD-src-23c4215cb0e4dd315f6b1873c3004247d76e088a.tar.gz |
Take care to avoid having "strong" and "weak" symbols of the same name in
libc_r.
Diffstat (limited to 'lib/libc/gen/wait.c')
-rw-r--r-- | lib/libc/gen/wait.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/gen/wait.c b/lib/libc/gen/wait.c index 2f9ca6e..366e262 100644 --- a/lib/libc/gen/wait.c +++ b/lib/libc/gen/wait.c @@ -49,4 +49,6 @@ __wait(istat) return (wait4(WAIT_ANY, istat, 0, (struct rusage *)0)); } +#ifndef _THREAD_SAFE __weak_reference(__wait, wait); +#endif |