diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-06-28 08:11:28 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-06-28 08:11:28 +0000 |
commit | b14be6fe433de5ece5eb75525943931df11af90f (patch) | |
tree | bf08ec9300487e0768098cd229c87bf4469d971d /sysdeps/unix/sysv/linux/xstatconv.h | |
parent | b4431a7270c4e024ce698f5dafdcac10292dcc92 (diff) | |
download | glibc-b14be6fe433de5ece5eb75525943931df11af90f.tar.gz glibc-b14be6fe433de5ece5eb75525943931df11af90f.tar.xz glibc-b14be6fe433de5ece5eb75525943931df11af90f.zip |
Update.
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.
Diffstat (limited to 'sysdeps/unix/sysv/linux/xstatconv.h')
-rw-r--r-- | sysdeps/unix/sysv/linux/xstatconv.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/xstatconv.h b/sysdeps/unix/sysv/linux/xstatconv.h index cb5cda0326..387a9feffc 100644 --- a/sysdeps/unix/sysv/linux/xstatconv.h +++ b/sysdeps/unix/sysv/linux/xstatconv.h @@ -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); |