svn commit: trunk/uClibc/libc/sysdeps/linux/common

vapier at uclibc.org vapier at uclibc.org
Sat Jan 14 00:17:06 UTC 2006


Author: vapier
Date: 2006-01-13 16:17:05 -0800 (Fri, 13 Jan 2006)
New Revision: 13275

Log:
dont include bits/kernel_stat.h as xstatconv.h already does and use sys/stat.h rather than bits/stat.h

Modified:
   trunk/uClibc/libc/sysdeps/linux/common/fstat.c
   trunk/uClibc/libc/sysdeps/linux/common/fstat64.c
   trunk/uClibc/libc/sysdeps/linux/common/lstat.c
   trunk/uClibc/libc/sysdeps/linux/common/lstat64.c
   trunk/uClibc/libc/sysdeps/linux/common/stat.c
   trunk/uClibc/libc/sysdeps/linux/common/stat64.c


Changeset:
Modified: trunk/uClibc/libc/sysdeps/linux/common/fstat.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/common/fstat.c	2006-01-14 00:16:31 UTC (rev 13274)
+++ trunk/uClibc/libc/sysdeps/linux/common/fstat.c	2006-01-14 00:17:05 UTC (rev 13275)
@@ -9,15 +9,15 @@
 
 /* need to hide the 64bit prototype or the weak_alias()
  * will fail when __NR_fstat64 doesnt exist */
+#define fstat64 __hidefstat64
 #define __fstat64 __hide__fstat64
 
 #include "syscalls.h"
 #include <unistd.h>
-#define _SYS_STAT_H
-#include <bits/stat.h>
-#include <bits/kernel_stat.h>
+#include <sys/stat.h>
 #include "xstatconv.h"
 
+#undef fstat64
 #undef __fstat64
 
 #define __NR___syscall_fstat __NR_fstat

Modified: trunk/uClibc/libc/sysdeps/linux/common/fstat64.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/common/fstat64.c	2006-01-14 00:16:31 UTC (rev 13274)
+++ trunk/uClibc/libc/sysdeps/linux/common/fstat64.c	2006-01-14 00:17:05 UTC (rev 13275)
@@ -13,7 +13,6 @@
 #define __NR___syscall_fstat64 __NR_fstat64
 #include <unistd.h>
 #include <sys/stat.h>
-#include <bits/kernel_stat.h>
 #include "xstatconv.h"
 
 static inline _syscall2(int, __syscall_fstat64,

Modified: trunk/uClibc/libc/sysdeps/linux/common/lstat.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/common/lstat.c	2006-01-14 00:16:31 UTC (rev 13274)
+++ trunk/uClibc/libc/sysdeps/linux/common/lstat.c	2006-01-14 00:17:05 UTC (rev 13275)
@@ -9,15 +9,15 @@
 
 /* need to hide the 64bit prototype or the weak_alias()
  * will fail when __NR_lstat64 doesnt exist */
+#define lstat64 __hidelstat64
 #define __lstat64 __hide__lstat64
 
 #include "syscalls.h"
 #include <unistd.h>
-#define _SYS_STAT_H
-#include <bits/stat.h>
-#include <bits/kernel_stat.h>
+#include <sys/stat.h>
 #include "xstatconv.h"
 
+#undef lstat64
 #undef __lstat64
 
 #define __NR___syscall_lstat __NR_lstat

Modified: trunk/uClibc/libc/sysdeps/linux/common/lstat64.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/common/lstat64.c	2006-01-14 00:16:31 UTC (rev 13274)
+++ trunk/uClibc/libc/sysdeps/linux/common/lstat64.c	2006-01-14 00:17:05 UTC (rev 13275)
@@ -12,7 +12,6 @@
 #if defined __UCLIBC_HAS_LFS__ && defined __NR_lstat64
 #include <unistd.h>
 #include <sys/stat.h>
-#include <bits/kernel_stat.h>
 #include "xstatconv.h"
 
 #define __NR___syscall_lstat64 __NR_lstat64

Modified: trunk/uClibc/libc/sysdeps/linux/common/stat.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/common/stat.c	2006-01-14 00:16:31 UTC (rev 13274)
+++ trunk/uClibc/libc/sysdeps/linux/common/stat.c	2006-01-14 00:17:05 UTC (rev 13275)
@@ -9,14 +9,15 @@
 
 /* need to hide the 64bit prototype or the weak_alias()
  * will fail when __NR_stat64 doesnt exist */
+#define stat64 __hidestat64
 #define __stat64 __hide__stat64
 
 #include "syscalls.h"
 #include <unistd.h>
-#define _SYS_STAT_H
-#include <bits/stat.h>
+#include <sys/stat.h>
 #include "xstatconv.h"
 
+#undef stat64
 #undef __stat64
 
 #define __NR___syscall_stat __NR_stat

Modified: trunk/uClibc/libc/sysdeps/linux/common/stat64.c
===================================================================
--- trunk/uClibc/libc/sysdeps/linux/common/stat64.c	2006-01-14 00:16:31 UTC (rev 13274)
+++ trunk/uClibc/libc/sysdeps/linux/common/stat64.c	2006-01-14 00:17:05 UTC (rev 13275)
@@ -13,7 +13,6 @@
 #define __NR___syscall_stat64 __NR_stat64
 #include <unistd.h>
 #include <sys/stat.h>
-#include <bits/kernel_stat.h>
 #include "xstatconv.h"
 
 static inline _syscall2(int, __syscall_stat64,




More information about the uClibc-cvs mailing list