summaryrefslogtreecommitdiff
path: root/io
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-11-17 21:32:27 +0000
committerUlrich Drepper <drepper@redhat.com>2005-11-17 21:32:27 +0000
commitc6f688a090909c9865340460fd64e2e59c33be05 (patch)
treeb071e645b3837dda4a592a1a792a1c7319faaeb8 /io
parent8ce9ea74cc2a6ce6fdafac0e0829b1bc93788143 (diff)
* io/sys/stat.h (fstatat): If __REDIRECT_NTH isn't defined,
define fstatat to fstatat64. (fstatat64): Only provide prototype if __USE_LARGEFILE64, similarly with the inline. * io/fcntl.h (openat64): Only provide prototype if __USE_LARGEFILE64.
Diffstat (limited to 'io')
-rw-r--r--io/fcntl.h2
-rw-r--r--io/sys/stat.h11
2 files changed, 11 insertions, 2 deletions
diff --git a/io/fcntl.h b/io/fcntl.h
index 8e13d33dcc..313540f96f 100644
--- a/io/fcntl.h
+++ b/io/fcntl.h
@@ -114,8 +114,10 @@ extern int __REDIRECT (openat, (int __fd, __const char *__file, int __oflag,
# endif
# endif
+# ifdef __USE_LARGEFILE64
extern int openat64 (int __fd, __const char *__file, int __oflag, ...)
__nonnull ((2));
+# endif
#endif
/* Create and open FILE, with mode MODE. This takes an `int' MODE
diff --git a/io/sys/stat.h b/io/sys/stat.h
index c4b307f2bb..7221b4e7be 100644
--- a/io/sys/stat.h
+++ b/io/sys/stat.h
@@ -236,13 +236,19 @@ extern int fstat64 (int __fd, struct stat64 *__buf) __THROW __nonnull ((2));
extern int fstatat (int __fd, __const char *__file, struct stat *__buf,
int __flag) __THROW __nonnull ((2, 3));
# else
+# ifdef __REDIRECT_NTH
extern int __REDIRECT_NTH (fstatat, (int __fd, __const char *__file,
struct stat *__buf, int __flag),
fstatat64) __nonnull ((2, 3));
+# else
+# define fstatat fstatat64
+# endif
# endif
+# ifdef __USE_LARGEFILE64
extern int fstatat64 (int __fd, __const char *__file, struct stat64 *__buf,
int __flag) __THROW __nonnull ((2, 3));
+# endif
#endif
#if defined __USE_BSD || defined __USE_XOPEN_EXTENDED
@@ -446,15 +452,16 @@ __NTH (fstat64 (int __fd, struct stat64 *__statbuf))
{
return __fxstat64 (_STAT_VER, __fd, __statbuf);
}
-# endif
-# ifdef __USE_GNU
+# ifdef __USE_GNU
extern __inline__ int
__NTH (fstatat64 (int __fd, __const char *__filename, struct stat64 *__statbuf,
int __flag))
{
return __fxstatat64 (_STAT_VER, __fd, __filename, __statbuf, __flag);
}
+# endif
+
# endif
#endif