diff options
Diffstat (limited to 'include/sys/stat.h')
-rw-r--r-- | include/sys/stat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sys/stat.h b/include/sys/stat.h index bb89457e65..16ae6c7125 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -12,9 +12,9 @@ extern int __mkdir (__const char *__path, __mode_t __mode); extern int __mknod (__const char *__path, __mode_t __mode, __dev_t __dev); extern int __fxstat_internal (int __ver, int __fildes, - struct stat *__stat_buf); + struct stat *__stat_buf) attribute_hidden; extern int __fxstat64_internal (int __ver, int __fildes, - struct stat64 *__stat_buf) ; + struct stat64 *__stat_buf) attribute_hidden; extern __inline__ int __stat (__const char *__path, struct stat *__statbuf) { return __xstat (_STAT_VER, __path, __statbuf); |