diff options
author | jasone <jasone@FreeBSD.org> | 2000-01-29 22:53:55 +0000 |
---|---|---|
committer | jasone <jasone@FreeBSD.org> | 2000-01-29 22:53:55 +0000 |
commit | c339e807ccf7499f42704f48c2e0224872751db2 (patch) | |
tree | 61e116998f138e3887e2ec1f32e12050049277cc /lib/libc_r/uthread/uthread_socket.c | |
parent | df12fb7fd7bee2fff080c5de348a3cd2ade97659 (diff) | |
download | FreeBSD-src-c339e807ccf7499f42704f48c2e0224872751db2.zip FreeBSD-src-c339e807ccf7499f42704f48c2e0224872751db2.tar.gz |
Use __strong_reference() instead of __weak_reference() to assure that the
weak symbols of the same name are not used.
Diffstat (limited to 'lib/libc_r/uthread/uthread_socket.c')
-rw-r--r-- | lib/libc_r/uthread/uthread_socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc_r/uthread/uthread_socket.c b/lib/libc_r/uthread/uthread_socket.c index d1fe141..5cd8f75 100644 --- a/lib/libc_r/uthread/uthread_socket.c +++ b/lib/libc_r/uthread/uthread_socket.c @@ -56,5 +56,5 @@ _socket(int af, int type, int protocol) return (fd); } -__weak_reference(_socket, socket); +__strong_reference(_socket, socket); #endif |