diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-19 21:04:15 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-19 21:04:15 +0000 |
commit | aebf0c050a8598c864dda377b4fadb79225d34ca (patch) | |
tree | f67c89bb2536f64c390654810b1aa1b95ae0a11e /libc/stdio/fsetpos.c | |
parent | 6f728cdcf296054020c8606cb8cb841d84a64245 (diff) | |
download | uClibc-alpine-aebf0c050a8598c864dda377b4fadb79225d34ca.tar.bz2 uClibc-alpine-aebf0c050a8598c864dda377b4fadb79225d34ca.tar.xz |
Sync up with trunk.
Diffstat (limited to 'libc/stdio/fsetpos.c')
-rw-r--r-- | libc/stdio/fsetpos.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/libc/stdio/fsetpos.c b/libc/stdio/fsetpos.c index 44104b4df..2b02f25e0 100644 --- a/libc/stdio/fsetpos.c +++ b/libc/stdio/fsetpos.c @@ -7,16 +7,6 @@ #include "_stdio.h" -#ifdef __DO_LARGEFILE -# ifndef __UCLIBC_HAS_LFS__ -# error large file support is not enabled! -# endif - -# define fsetpos fsetpos64 -# define fpos_t fpos64_t -# define fseek fseeko64 -#endif - int fsetpos(FILE *stream, register const fpos_t *pos) { #ifdef __STDIO_MBSTATE @@ -41,4 +31,3 @@ int fsetpos(FILE *stream, register const fpos_t *pos) #endif } - |