mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
* io/sys/stat.h: Use __const not const in fstatat prototypes.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2005-11-17 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* io/sys/stat.h: Use __const not const in fstatat prototypes.
|
||||||
|
|
||||||
2005-11-08 H.J. Lu <hongjiu.lu@intel.com>
|
2005-11-08 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* sysdeps/wordsize-32/Makefile (CPPFLAGS-divdi3.c): Set to
|
* sysdeps/wordsize-32/Makefile (CPPFLAGS-divdi3.c): Set to
|
||||||
|
@ -233,15 +233,15 @@ extern int fstat64 (int __fd, struct stat64 *__buf) __THROW __nonnull ((2));
|
|||||||
Relative path names are interpreted relative to FD unless FD is
|
Relative path names are interpreted relative to FD unless FD is
|
||||||
AT_FDCWD. */
|
AT_FDCWD. */
|
||||||
# ifndef __USE_FILE_OFFSET64
|
# ifndef __USE_FILE_OFFSET64
|
||||||
extern int fstatat (int __fd, const char *__file, struct stat *__buf,
|
extern int fstatat (int __fd, __const char *__file, struct stat *__buf,
|
||||||
int __flag) __THROW __nonnull ((2, 3));
|
int __flag) __THROW __nonnull ((2, 3));
|
||||||
# else
|
# else
|
||||||
extern int __REDIRECT_NTH (fstatat, (int __fd, const char *__file,
|
extern int __REDIRECT_NTH (fstatat, (int __fd, __const char *__file,
|
||||||
struct stat *__buf, int __flag),
|
struct stat *__buf, int __flag),
|
||||||
fstatat64) __nonnull ((2, 3));
|
fstatat64) __nonnull ((2, 3));
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
extern int fstatat64 (int __fd, const char *__file, struct stat64 *__buf,
|
extern int fstatat64 (int __fd, __const char *__file, struct stat64 *__buf,
|
||||||
int __flag) __THROW __nonnull ((2, 3));
|
int __flag) __THROW __nonnull ((2, 3));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user