2005-12-16 Jeff Johnston <jjohnstn@redhat.com>

* libc/sys/linux/sys/stat.h: Change *stat64 prototypes to
        take a pointer to struct stat64 rather than struct stat.
This commit is contained in:
Jeff Johnston 2005-12-16 19:11:10 +00:00
parent 843e635aaa
commit a4cd7f20f7
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2005-12-16 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/sys/stat.h: Change *stat64 prototypes to
take a pointer to struct stat64 rather than struct stat.
2005-12-16 Ralf Corsepius <ralf.corsepius@rtems.org> 2005-12-16 Ralf Corsepius <ralf.corsepius@rtems.org>
* libc/include/stdint.h: Prefer long over int for int32_t. * libc/include/stdint.h: Prefer long over int for int32_t.

View File

@ -24,10 +24,10 @@ int _EXFUN(stat,( const char *__path, struct stat *__sbuf ));
mode_t _EXFUN(umask,( mode_t __mask )); mode_t _EXFUN(umask,( mode_t __mask ));
#ifndef _POSIX_SOURCE #ifndef _POSIX_SOURCE
int _EXFUN(fstat64,( int __fd, struct stat *__sbuf )); int _EXFUN(fstat64,( int __fd, struct stat64 *__sbuf ));
int _EXFUN(lstat,( const char *file_name, struct stat *buf)); int _EXFUN(lstat,( const char *file_name, struct stat64 *buf));
int _EXFUN(lstat64,( const char *file_name, struct stat *buf)); int _EXFUN(lstat64,( const char *file_name, struct stat64 *buf));
int _EXFUN(stat64,( const char *__path, struct stat *__sbuf )); int _EXFUN(stat64,( const char *__path, struct stat64 *__sbuf ));
#endif /* _POSIX_SOURCE */ #endif /* _POSIX_SOURCE */
#endif /* _SYS_STAT_H */ #endif /* _SYS_STAT_H */