OSDN Git Service

Some undefs to be pedantic
authorPeter S. Mazinger <ps.m@gmx.net>
Fri, 16 Dec 2005 00:22:11 +0000 (00:22 -0000)
committerPeter S. Mazinger <ps.m@gmx.net>
Fri, 16 Dec 2005 00:22:11 +0000 (00:22 -0000)
12 files changed:
libc/sysdeps/linux/common/__syscall_fcntl.c
libc/sysdeps/linux/common/__syscall_fcntl64.c
libc/sysdeps/linux/common/fstat.c
libc/sysdeps/linux/common/fstat64.c
libc/sysdeps/linux/common/llseek.c
libc/sysdeps/linux/common/lseek.c
libc/sysdeps/linux/common/lstat.c
libc/sysdeps/linux/common/lstat64.c
libc/sysdeps/linux/common/open.c
libc/sysdeps/linux/common/open64.c
libc/sysdeps/linux/common/stat.c
libc/sysdeps/linux/common/stat64.c

index f094616..ca9aff5 100644 (file)
 #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);
index 763297c..9231808 100644 (file)
@@ -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, ...)
index 19d678b..979a0db 100644 (file)
@@ -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)
index 87621be..e1e9dff 100644 (file)
@@ -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;
index 7237e96..55200d3 100644 (file)
@@ -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
index ebd0751..4eb51d3 100644 (file)
@@ -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)
index 8cacd4e..69d663d 100644 (file)
@@ -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);
 
index f3ae083..80268d2 100644 (file)
@@ -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);
 
index 90e990a..648f7d0 100644 (file)
@@ -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);
index c1cd471..f577d95 100644 (file)
@@ -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;
index 0abd345..7e7fe6b 100644 (file)
@@ -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);
 
index d539906..f46e52e 100644 (file)
@@ -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;