diff options
author | jasone <jasone@FreeBSD.org> | 2000-01-12 09:28:58 +0000 |
---|---|---|
committer | jasone <jasone@FreeBSD.org> | 2000-01-12 09:28:58 +0000 |
commit | 4b4a2e733a2332d82db33d43f90c3e14fb0ff31e (patch) | |
tree | 5f61d93336476ecbaf8b9665c656c202589b1e08 /lib/libpthread/thread/thr_open.c | |
parent | 75903038bc52105bc7479fe5f2b75f22f10c1c50 (diff) | |
download | FreeBSD-src-4b4a2e733a2332d82db33d43f90c3e14fb0ff31e.zip FreeBSD-src-4b4a2e733a2332d82db33d43f90c3e14fb0ff31e.tar.gz |
Track libc's three-tier symbol naming. libc_r must currently implement
the _libc_*() entry points and add *() weak aliases. This will all
change for the better when libc_r becomes libpthread.
Diffstat (limited to 'lib/libpthread/thread/thr_open.c')
-rw-r--r-- | lib/libpthread/thread/thr_open.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libpthread/thread/thr_open.c b/lib/libpthread/thread/thr_open.c index 4e9993e..4bc2f1a 100644 --- a/lib/libpthread/thread/thr_open.c +++ b/lib/libpthread/thread/thr_open.c @@ -42,7 +42,7 @@ #include "pthread_private.h" int -open(const char *path, int flags,...) +_libc_open(const char *path, int flags,...) { int fd; int mode = 0; @@ -74,4 +74,6 @@ open(const char *path, int flags,...) /* Return the file descriptor or -1 on error: */ return (fd); } + +__weak_reference(_libc_open, open); #endif |