diff options
author | Andreas Jaeger <aj@suse.de> | 2003-06-30 09:33:13 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2003-06-30 09:33:13 +0000 |
commit | 7efbf47cb0c362804dcd62dc8e53b6e013edaf71 (patch) | |
tree | 48c09bd502095c6730b129d04ac044f8e20009a1 /sysdeps | |
parent | e479cc8e4c2297c6d1f190192bd8038b1b7e99d2 (diff) | |
download | glibc-7efbf47cb0c362804dcd62dc8e53b6e013edaf71.tar.gz glibc-7efbf47cb0c362804dcd62dc8e53b6e013edaf71.tar.xz glibc-7efbf47cb0c362804dcd62dc8e53b6e013edaf71.zip |
2003-06-17 Guido Guenther <agx@sigxcpu.org>
* sysdeps/unix/sysv/linux/mips/xstatconv.c: Handle STAT_IS_KERNEL_STAT case. (xstat_conv): Rename to __xstat_conv and remove static inline. (xstat64_conv): Likewise.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/xstatconv.c | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/xstatconv.c b/sysdeps/unix/sysv/linux/mips/xstatconv.c index b3b7634d3e..41d1cbb768 100644 --- a/sysdeps/unix/sysv/linux/mips/xstatconv.c +++ b/sysdeps/unix/sysv/linux/mips/xstatconv.c @@ -1,5 +1,5 @@ /* Convert between the kernel's `struct stat' format, and libc's. - Copyright (C) 1991,1995,1996,1997,1998,2000 Free Software Foundation, Inc. + Copyright (C) 1991,1995,1996,1997,1998,2000,2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -17,11 +17,22 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ +#include <errno.h> +#include <sys/stat.h> +#include <kernel_stat.h> + +#ifdef STAT_IS_KERNEL_STAT + +/* Dummy. */ +struct kernel_stat; + +#else + #include <string.h> -static inline int -xstat_conv (int vers, struct kernel_stat *kbuf, void *ubuf) +int +__xstat_conv (int vers, struct kernel_stat *kbuf, void *ubuf) { switch (vers) { @@ -70,8 +81,8 @@ xstat_conv (int vers, struct kernel_stat *kbuf, void *ubuf) return 0; } -static inline int -xstat64_conv (int vers, struct kernel_stat *kbuf, void *ubuf) +int +__xstat64_conv (int vers, struct kernel_stat *kbuf, void *ubuf) { #ifdef XSTAT_IS_XSTAT64 return xstat_conv (vers, kbuf, ubuf); @@ -118,3 +129,5 @@ xstat64_conv (int vers, struct kernel_stat *kbuf, void *ubuf) return 0; #endif } + +#endif /* ! STAT_IS_KERNEL_STAT */ |