From 100e79a3dfd1b1037c7300ba03f566c81f861fd1 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sun, 20 Nov 2005 06:53:14 +0000 Subject: fix tab issue properly by not using tabs --- libc/stdio/fopen64.c | 4 ++-- libc/stdio/freopen64.c | 4 ++-- libc/stdio/fseeko.c | 4 ++-- libc/stdio/fseeko64.c | 4 ++-- libc/stdio/ftello.c | 4 ++-- libc/stdio/ftello64.c | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) (limited to 'libc') 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 -- cgit v1.2.3