]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 28 Jun 2003 08:11:28 +0000 (08:11 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 28 Jun 2003 08:11:28 +0000 (08:11 +0000)
2003-06-26  Steven Munroe  <sjmunroe@us.ibm.com>

* sysdeps/unix/sysv/linux/xstatconv.h [!STAT_IS_KERNEL_STAT]:
Conditionalize function definitions that use struct kernel_stat.
* sysdeps/unix/sysv/linux/fxstat.c: Remove __syscall_fstat extern.
* sysdeps/unix/sysv/linux/lxstat.c: Remove __syscall_lstat extern.
* sysdeps/unix/sysv/linux/xstat.c: Remove __syscall_stat extern.

ChangeLog
sysdeps/unix/sysv/linux/fxstat.c
sysdeps/unix/sysv/linux/lxstat.c
sysdeps/unix/sysv/linux/xstat.c
sysdeps/unix/sysv/linux/xstatconv.h

index a79180662156f6e90e32e323c181bb381e01e1a4..00822dbfbaeb4fb49657a25cbc5315fb53a38d42 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2003-06-26  Steven Munroe  <sjmunroe@us.ibm.com>
+
+       * sysdeps/unix/sysv/linux/xstatconv.h [!STAT_IS_KERNEL_STAT]:
+       Conditionalize function definitions that use struct kernel_stat.
+       * sysdeps/unix/sysv/linux/fxstat.c: Remove __syscall_fstat extern.
+       * sysdeps/unix/sysv/linux/lxstat.c: Remove __syscall_lstat extern.
+       * sysdeps/unix/sysv/linux/xstat.c: Remove __syscall_stat extern.
+
 2003-06-28  Ulrich Drepper  <drepper@redhat.com>
 
        * sysdeps/unix/sysv/linux/s390/semtimedop.c (semtimedop): Add real
index 6acafa261b277d3c5f6f416a6d35264fcbd5594a..47c98158b1a62f8b61033485b6d1566e3b96bcdb 100644 (file)
@@ -33,8 +33,6 @@
 
 #include <xstatconv.h>
 
-extern int __syscall_fstat (int, struct kernel_stat *__unbounded);
-
 /* Get information about the file FD in BUF.  */
 int
 __fxstat (int vers, int fd, struct stat *buf)
index 156850330e6d1b23138d6262103d7bc58a178fd5..f49c252367bbf49dd5ca7c147384b02f91848e6e 100644 (file)
@@ -32,9 +32,6 @@
 
 #include <xstatconv.h>
 
-extern int __syscall_lstat (const char *__unbounded,
-                           struct kernel_stat *__unbounded);
-
 /* Get information about the file NAME in BUF.  */
 int
 __lxstat (int vers, const char *name, struct stat *buf)
index de6a57d7ac0dde7937e4380dd1b0a00a85216c2a..60138ee93d77a9521e60a6000f59921a17922ed8 100644 (file)
@@ -32,9 +32,6 @@
 
 #include <xstatconv.h>
 
-extern int __syscall_stat (const char *__unbounded,
-                          struct kernel_stat *__unbounded);
-
 /* Get information about the file NAME in BUF.  */
 int
 __xstat (int vers, const char *name, struct stat *buf)
index cb5cda0326b08dad41c5786b4ea14362df240f29..387a9feffcdced51c95f9d08fe6baa05b190e8a3 100644 (file)
@@ -19,7 +19,8 @@
 
 #include "kernel-features.h"
 
-
+#ifndef STAT_IS_KERNEL_STAT
 extern int __xstat_conv (int vers, struct kernel_stat *kbuf, void *ubuf);
 extern int __xstat64_conv (int vers, struct kernel_stat *kbuf, void *ubuf);
+#endif
 extern int __xstat32_conv (int vers, struct stat64 *kbuf, struct stat *buf);