diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-11-20 06:53:14 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-11-20 06:53:14 +0000 |
commit | 100e79a3dfd1b1037c7300ba03f566c81f861fd1 (patch) | |
tree | 0de2a3cc48458979883906397f29b03edf0dbd32 | |
parent | 10ceffaf8b6237ff3d86ecd7799ec8c094114523 (diff) |
fix tab issue properly by not using tabs
-rw-r--r-- | libc/stdio/fopen64.c | 4 | ||||
-rw-r--r-- | libc/stdio/freopen64.c | 4 | ||||
-rw-r--r-- | libc/stdio/fseeko.c | 4 | ||||
-rw-r--r-- | libc/stdio/fseeko64.c | 4 | ||||
-rw-r--r-- | libc/stdio/ftello.c | 4 | ||||
-rw-r--r-- | libc/stdio/ftello64.c | 4 |
6 files changed, 12 insertions, 12 deletions
diff --git a/libc/stdio/fopen64.c b/libc/stdio/fopen64.c index 95cd7a02b..7ac73dc8c 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 FILEDES_ARG (-2) +# define fopen fopen64 +# define FILEDES_ARG (-2) # include "fopen.c" #endif diff --git a/libc/stdio/freopen64.c b/libc/stdio/freopen64.c index bc278194d..d5cd41b24 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 FILEDES_ARG (-2) +# define freopen freopen64 +# define FILEDES_ARG (-2) # include "freopen.c" #endif diff --git a/libc/stdio/fseeko.c b/libc/stdio/fseeko.c index 852557901..3fa15050d 100644 --- a/libc/stdio/fseeko.c +++ b/libc/stdio/fseeko.c @@ -12,8 +12,8 @@ #endif #ifndef __DO_LARGEFILE -# define FSEEK fseek -# define OFFSET_TYPE long int +# define FSEEK fseek +# define OFFSET_TYPE long int #endif int FSEEK(register FILE *stream, OFFSET_TYPE offset, int whence) diff --git a/libc/stdio/fseeko64.c b/libc/stdio/fseeko64.c index 93768c528..e4ffe94ed 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 OFFSET_TYPE __off64_t +# 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 a69ce23df..4a934db2b 100644 --- a/libc/stdio/ftello.c +++ b/libc/stdio/ftello.c @@ -8,8 +8,8 @@ #include "_stdio.h" #ifndef __DO_LARGEFILE -# define FTELL ftell -# define OFFSET_TYPE long int +# define FTELL ftell +# define OFFSET_TYPE long int #endif OFFSET_TYPE FTELL(register FILE *stream) diff --git a/libc/stdio/ftello64.c b/libc/stdio/ftello64.c index f3b289eee..f87c4caad 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 OFFSET_TYPE __off64_t +# define FTELL __ftello64 +# define OFFSET_TYPE __off64_t # include "ftello.c" #endif |