Browse Source

fix tab issue properly by not using tabs

Mike Frysinger 18 years ago
parent
commit
100e79a3df
6 changed files with 12 additions and 12 deletions
  1. 2 2
      libc/stdio/fopen64.c
  2. 2 2
      libc/stdio/freopen64.c
  3. 2 2
      libc/stdio/fseeko.c
  4. 2 2
      libc/stdio/fseeko64.c
  5. 2 2
      libc/stdio/ftello.c
  6. 2 2
      libc/stdio/ftello64.c

+ 2 - 2
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

+ 2 - 2
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

+ 2 - 2
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)

+ 2 - 2
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

+ 2 - 2
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)

+ 2 - 2
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