diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-22 14:22:37 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-22 14:22:37 +0000 |
commit | c33ce133b9da9236fffd19d72d6b4d2ca63bfa2a (patch) | |
tree | b0e122c10be5bd07acb94a4c3c21796bf6261e79 /libc/sysdeps/linux/common | |
parent | 04b163798f550730faed41fa2cbe949cb00c07a2 (diff) |
fix some unneeded PLT references
Diffstat (limited to 'libc/sysdeps/linux/common')
-rw-r--r-- | libc/sysdeps/linux/common/creat64.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/creat64.c b/libc/sysdeps/linux/common/creat64.c index 875606a1d..6fa010545 100644 --- a/libc/sysdeps/linux/common/creat64.c +++ b/libc/sysdeps/linux/common/creat64.c @@ -23,7 +23,8 @@ #include <sys/types.h> extern __typeof(open64) __libc_open64; -/* libc_hidden_proto(__libc_open64) */ +libc_hidden_proto(__libc_open64) + extern __typeof(creat64) __libc_creat64; /* Create FILE with protections MODE. */ |