diff options
| author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-20 00:49:28 +0000 |
|---|---|---|
| committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2005-11-20 00:49:28 +0000 |
| commit | 6ff8dfc33e3ee8377fbdd51bfaa8a6f403a03436 (patch) | |
| tree | 7d646abe9a54f5a61cdc4d5b525483e097c9bd79 /libc | |
| parent | 2e4edb3de2940ddafaab69d6092df8e481069237 (diff) | |
| download | uClibc-alpine-6ff8dfc33e3ee8377fbdd51bfaa8a6f403a03436.tar.bz2 uClibc-alpine-6ff8dfc33e3ee8377fbdd51bfaa8a6f403a03436.tar.xz | |
Merge from trunk.
Diffstat (limited to 'libc')
| -rw-r--r-- | libc/stdio/fopen64.c | 2 | ||||
| -rw-r--r-- | libc/stdio/freopen64.c | 2 | ||||
| -rw-r--r-- | libc/stdio/fseeko.c | 2 | ||||
| -rw-r--r-- | libc/stdio/fseeko64.c | 2 | ||||
| -rw-r--r-- | libc/stdio/ftello.c | 2 | ||||
| -rw-r--r-- | libc/stdio/ftello64.c | 4 |
6 files changed, 7 insertions, 7 deletions
diff --git a/libc/stdio/fopen64.c b/libc/stdio/fopen64.c index 7510f9a93..95cd7a02b 100644 --- a/libc/stdio/fopen64.c +++ b/libc/stdio/fopen64.c @@ -9,7 +9,7 @@ #ifdef __UCLIBC_HAS_LFS__ # define __DO_LARGEFILE -# define fopen fopen64 +# define fopen fopen64 # define FILEDES_ARG (-2) # include "fopen.c" #endif diff --git a/libc/stdio/freopen64.c b/libc/stdio/freopen64.c index d3151bab8..bc278194d 100644 --- a/libc/stdio/freopen64.c +++ b/libc/stdio/freopen64.c @@ -9,7 +9,7 @@ #ifdef __UCLIBC_HAS_LFS__ # define __DO_LARGEFILE -# define freopen freopen64 +# define freopen freopen64 # define FILEDES_ARG (-2) # include "freopen.c" #endif diff --git a/libc/stdio/fseeko.c b/libc/stdio/fseeko.c index 242292a43..852557901 100644 --- a/libc/stdio/fseeko.c +++ b/libc/stdio/fseeko.c @@ -12,7 +12,7 @@ #endif #ifndef __DO_LARGEFILE -# define FSEEK fseek +# define FSEEK fseek # define OFFSET_TYPE long int #endif diff --git a/libc/stdio/fseeko64.c b/libc/stdio/fseeko64.c index 66778e963..93768c528 100644 --- a/libc/stdio/fseeko64.c +++ b/libc/stdio/fseeko64.c @@ -9,7 +9,7 @@ #ifdef __UCLIBC_HAS_LFS__ # define __DO_LARGEFILE -# define FSEEK __fseeko64 +# define FSEEK __fseeko64 # define OFFSET_TYPE __off64_t # include "fseeko.c" #endif diff --git a/libc/stdio/ftello.c b/libc/stdio/ftello.c index a28333efc..a69ce23df 100644 --- a/libc/stdio/ftello.c +++ b/libc/stdio/ftello.c @@ -8,7 +8,7 @@ #include "_stdio.h" #ifndef __DO_LARGEFILE -# define FTELL ftell +# define FTELL ftell # define OFFSET_TYPE long int #endif diff --git a/libc/stdio/ftello64.c b/libc/stdio/ftello64.c index 3ba201968..f3b289eee 100644 --- a/libc/stdio/ftello64.c +++ b/libc/stdio/ftello64.c @@ -9,7 +9,7 @@ #ifdef __UCLIBC_HAS_LFS__ # define __DO_LARGEFILE -# define FTELL __ftello64 +# define FTELL __ftello64 # define OFFSET_TYPE __off64_t -# include "fgetpos.c" +# include "ftello.c" #endif |
