diff options
author | Khem Raj <kraj@mvista.com> | 2008-12-23 10:16:51 +0000 |
---|---|---|
committer | Khem Raj <kraj@mvista.com> | 2008-12-23 10:16:51 +0000 |
commit | f6fc6973e34a3c250457aed1710ee0872800acdd (patch) | |
tree | 6c7a5a33037fecf05340829155d636a5994ba7a2 /libc/sysdeps/linux/common/open64.c | |
parent | 6374ca896086574af61eb37ef371e3371b10bb5c (diff) | |
download | uClibc-alpine-f6fc6973e34a3c250457aed1710ee0872800acdd.tar.bz2 uClibc-alpine-f6fc6973e34a3c250457aed1710ee0872800acdd.tar.xz |
Get non nptl threads compiled on x86.
Diffstat (limited to 'libc/sysdeps/linux/common/open64.c')
-rw-r--r-- | libc/sysdeps/linux/common/open64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/open64.c b/libc/sysdeps/linux/common/open64.c index 7a68b4cd9..403e91a46 100644 --- a/libc/sysdeps/linux/common/open64.c +++ b/libc/sysdeps/linux/common/open64.c @@ -44,7 +44,7 @@ int open64 (const char *file, int oflag, ...) return result; #else - return __libc_open(file, oflag | O_LARGEFILE, mode); + return open(file, oflag | O_LARGEFILE, mode); #endif } libc_hidden_def(open64) |