diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-27 21:26:40 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-27 21:26:40 +0000 |
commit | f37aeefc62fb12d7e56516d21c3385341f8ce223 (patch) | |
tree | 378cc08c6b8fbd5714e81e7fe814b9751bed4d4d /libc/stdio/fseeko.c | |
parent | 0934f142036f12292711770d353f1c01ab718db7 (diff) |
Do not build *64 and llseek, correct some failure when LFS is disabled
Diffstat (limited to 'libc/stdio/fseeko.c')
-rw-r--r-- | libc/stdio/fseeko.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/stdio/fseeko.c b/libc/stdio/fseeko.c index 74a9e3c3a..f63ebad4e 100644 --- a/libc/stdio/fseeko.c +++ b/libc/stdio/fseeko.c @@ -16,7 +16,9 @@ # define OFFSET_TYPE long int #endif +#ifdef __UCLIBC_HAS_LFS__ libc_hidden_proto(fseeko64) +#endif libc_hidden_proto(fseek) int FSEEK(register FILE *stream, OFFSET_TYPE offset, int whence) |