diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-02-14 13:12:02 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-02-14 13:12:02 +0000 |
commit | e97ed6ddbe0d53d616d93669826db225b12c3235 (patch) | |
tree | 95e71538707c4723fd2a47ae52e6ca5c467cfc50 /sysdeps/posix/open64.c | |
parent | cb57ce6031a84f9fab94eb318909fad368baa81d (diff) | |
download | glibc-e97ed6ddbe0d53d616d93669826db225b12c3235.tar.gz glibc-e97ed6ddbe0d53d616d93669826db225b12c3235.tar.xz glibc-e97ed6ddbe0d53d616d93669826db225b12c3235.zip |
Remove bp-sym.h and BP_SYM uses from C code.
Diffstat (limited to 'sysdeps/posix/open64.c')
-rw-r--r-- | sysdeps/posix/open64.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sysdeps/posix/open64.c b/sysdeps/posix/open64.c index 4e4480256e..e0c55b00fb 100644 --- a/sysdeps/posix/open64.c +++ b/sysdeps/posix/open64.c @@ -17,7 +17,6 @@ #include <fcntl.h> #include <stdarg.h> -#include <bp-sym.h> #include <sysdep-cancel.h> /* Open FILE with access OFLAG. If OFLAG includes O_CREAT, @@ -46,6 +45,6 @@ __libc_open64 (const char *file, int oflag, ...) return result; } -weak_alias (__libc_open64, BP_SYM (__open64)) -libc_hidden_weak (BP_SYM (__open64)) -weak_alias (__libc_open64, BP_SYM (open64)) +weak_alias (__libc_open64, __open64) +libc_hidden_weak (__open64) +weak_alias (__libc_open64, open64) |