diff options
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/xstatconv.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/xstatconv.h b/sysdeps/unix/sysv/linux/xstatconv.h index 229e24cbe3..d21d9a0ad4 100644 --- a/sysdeps/unix/sysv/linux/xstatconv.h +++ b/sysdeps/unix/sysv/linux/xstatconv.h @@ -17,7 +17,10 @@ <http://www.gnu.org/licenses/>. */ #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); +extern int __xstat_conv (int vers, struct kernel_stat *kbuf, void *ubuf) + attribute_hidden; +extern int __xstat64_conv (int vers, struct kernel_stat *kbuf, void *ubuf) + attribute_hidden; #endif -extern int __xstat32_conv (int vers, struct stat64 *kbuf, struct stat *buf); +extern int __xstat32_conv (int vers, struct stat64 *kbuf, struct stat *buf) + attribute_hidden; |