diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-09-24 16:15:28 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-09-24 16:15:28 +0000 |
commit | dd4c03d796f73e008d93ade62655deb70aaaf34a (patch) | |
tree | 381f07ac566718afc00cde9a5470ad8bf16625e4 /libc/stdio/fseeko.c | |
parent | 0f82408c13d9e8be9dd022b0c21411fe86693f67 (diff) | |
download | uClibc-alpine-dd4c03d796f73e008d93ade62655deb70aaaf34a.tar.bz2 uClibc-alpine-dd4c03d796f73e008d93ade62655deb70aaaf34a.tar.xz |
Big sync with trunk.
Diffstat (limited to 'libc/stdio/fseeko.c')
-rw-r--r-- | libc/stdio/fseeko.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libc/stdio/fseeko.c b/libc/stdio/fseeko.c index fed425730..48979a06b 100644 --- a/libc/stdio/fseeko.c +++ b/libc/stdio/fseeko.c @@ -19,15 +19,11 @@ # define FSEEK __fseeko64 # define OFFSET_TYPE __off64_t -weak_alias(__fseeko64,fseeko64); - #else # define FSEEK fseek # define OFFSET_TYPE long int -weak_alias(fseek,fseeko); - #endif @@ -87,3 +83,9 @@ int FSEEK(register FILE *stream, OFFSET_TYPE offset, int whence) #endif } + +#ifdef __DO_LARGEFILE +weak_alias(__fseeko64,fseeko64); +#else +weak_alias(fseek,fseeko); +#endif |