Browse Source

Some undefs to be pedantic

Peter S. Mazinger 18 years ago
parent
commit
3039e5421c

+ 3 - 0
libc/sysdeps/linux/common/__syscall_fcntl.c

@@ -11,10 +11,13 @@
 #include <stdarg.h>
 #include <fcntl.h>
 
+#undef __fcntl
+
 #if defined __UCLIBC_HAS_LFS__ && defined __NR_fcntl64
 extern int __fcntl64(int fd, int cmd, ...) attribute_hidden;
 #endif
 
+#undef fcntl
 #define __NR___syscall_fcntl __NR_fcntl
 static inline
 _syscall3(int, __syscall_fcntl, int, fd, int, cmd, long, arg);

+ 1 - 0
libc/sysdeps/linux/common/__syscall_fcntl64.c

@@ -12,6 +12,7 @@
 #include <fcntl.h>
 
 #if defined __UCLIBC_HAS_LFS__ && defined __NR_fcntl64
+#undef fcntl64
 #define __NR___syscall_fcntl64 __NR_fcntl64
 static inline _syscall3(int, __syscall_fcntl64, int, fd, int, cmd, long, arg);
 int attribute_hidden __fcntl64(int fd, int cmd, ...)

+ 2 - 0
libc/sysdeps/linux/common/fstat.c

@@ -15,6 +15,8 @@
 #include "xstatconv.h"
 
 #define __NR___syscall_fstat __NR_fstat
+#undef __fstat
+#undef fstat
 static inline _syscall2(int, __syscall_fstat, int, fd, struct kernel_stat *, buf);
 
 int attribute_hidden __fstat(int fd, struct stat *buf)

+ 1 - 0
libc/sysdeps/linux/common/fstat64.c

@@ -19,6 +19,7 @@
 static inline _syscall2(int, __syscall_fstat64,
 		int, filedes, struct kernel_stat64 *, buf);
 
+#undef fstat64
 int attribute_hidden __fstat64(int fd, struct stat64 *buf)
 {
 	int result;

+ 1 - 1
libc/sysdeps/linux/common/llseek.c

@@ -33,7 +33,7 @@
 #include <sys/types.h>
 #include <sys/syscall.h>
 
-
+#undef lseek64
 #if defined __NR__llseek && defined __UCLIBC_HAS_LFS__
 
 #ifndef INLINE_SYSCALL

+ 2 - 0
libc/sysdeps/linux/common/lseek.c

@@ -11,6 +11,8 @@
 #include <unistd.h>
 
 #define __NR___lseek __NR_lseek
+#undef __lseek
+#undef lseek
 attribute_hidden _syscall3(__off_t, __lseek, int, fildes, __off_t, offset, int, whence);
 strong_alias(__lseek,lseek)
 weak_alias(__lseek,__libc_lseek)

+ 2 - 0
libc/sysdeps/linux/common/lstat.c

@@ -15,6 +15,8 @@
 #include "xstatconv.h"
 
 #define __NR___syscall_lstat __NR_lstat
+#undef __lstat
+#undef lstat
 static inline _syscall2(int, __syscall_lstat,
 		const char *, file_name, struct kernel_stat *, buf);
 

+ 1 - 0
libc/sysdeps/linux/common/lstat64.c

@@ -16,6 +16,7 @@
 #include "xstatconv.h"
 
 #define __NR___syscall_lstat64 __NR_lstat64
+#undef lstat64
 static inline _syscall2(int, __syscall_lstat64, const char *, file_name,
 		  struct kernel_stat64 *, buf);
 

+ 2 - 0
libc/sysdeps/linux/common/open.c

@@ -14,6 +14,8 @@
 #include <string.h>
 #include <sys/param.h>
 
+#undef __open
+#undef open
 #define __NR___syscall_open __NR_open
 static inline _syscall3(int, __syscall_open, const char *, file,
 		int, flags, __kernel_mode_t, mode);

+ 1 - 0
libc/sysdeps/linux/common/open64.c

@@ -28,6 +28,7 @@
 #ifdef __UCLIBC_HAS_LFS__
 /* Open FILE with access OFLAG.  If OFLAG includes O_CREAT,
    a third argument is the file protection.  */
+#undef open64
 int attribute_hidden __open64 (const char *file, int oflag, ...)
 {
   int mode = 0;

+ 2 - 0
libc/sysdeps/linux/common/stat.c

@@ -14,6 +14,8 @@
 #include "xstatconv.h"
 
 #define __NR___syscall_stat __NR_stat
+#undef __stat
+#undef stat
 static inline _syscall2(int, __syscall_stat,
 		const char *, file_name, struct kernel_stat *, buf);
 

+ 1 - 0
libc/sysdeps/linux/common/stat64.c

@@ -19,6 +19,7 @@
 static inline _syscall2(int, __syscall_stat64,
 		const char *, file_name, struct kernel_stat64 *, buf);
 
+#undef stat64
 int attribute_hidden __stat64(const char *file_name, struct stat64 *buf)
 {
 	int result;