Browse Source

Tab clean-up.

"Steven J. Hill" 18 years ago
parent
commit
0a18f43f72
5 changed files with 5 additions and 5 deletions
  1. 1 1
      libc/stdio/fopen64.c
  2. 1 1
      libc/stdio/freopen64.c
  3. 1 1
      libc/stdio/fseeko.c
  4. 1 1
      libc/stdio/fseeko64.c
  5. 1 1
      libc/stdio/ftello.c

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

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

+ 1 - 1
libc/stdio/fseeko.c

@@ -12,7 +12,7 @@
 #endif
 
 #ifndef __DO_LARGEFILE
-# define FSEEK				fseek
+# define FSEEK			fseek
 # define OFFSET_TYPE		long int
 #endif
 

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

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