summaryrefslogtreecommitdiffstats
path: root/newlib/libc/include/sys/stat.h
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2003-11-18 19:17:17 +0000
committerJeff Johnston <jjohnstn@redhat.com>2003-11-18 19:17:17 +0000
commita472290f3eedcf897c817d64f81eb235b7bf937c (patch)
treeae8234642b1f54b3058f5069851ddf5bca9d9b63 /newlib/libc/include/sys/stat.h
parent8f4dfcaa1fa1f21e16a4759693fe735568bb138f (diff)
downloadcygnal-a472290f3eedcf897c817d64f81eb235b7bf937c.tar.gz
cygnal-a472290f3eedcf897c817d64f81eb235b7bf937c.tar.bz2
cygnal-a472290f3eedcf897c817d64f81eb235b7bf937c.zip
2003-11-18 Corinna Vinschen <corinna@vinschen.de>
* libc/include/sys/fcntl.h: Declare _open64. * libc/include/sys/stat.h: Declare _fstat64. * libc/include/sys/unistd.h: Declare _lseek64.
Diffstat (limited to 'newlib/libc/include/sys/stat.h')
-rw-r--r--newlib/libc/include/sys/stat.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/newlib/libc/include/sys/stat.h b/newlib/libc/include/sys/stat.h
index de590315b..e22f59a5d 100644
--- a/newlib/libc/include/sys/stat.h
+++ b/newlib/libc/include/sys/stat.h
@@ -140,6 +140,9 @@ int _EXFUN(mknod,( const char *__path, mode_t __mode, dev_t __dev ));
#ifndef __INSIDE_CYGWIN__
int _EXFUN(_fstat,( int __fd, struct stat *__sbuf ));
int _EXFUN(_stat,( const char *__path, struct stat *__sbuf ));
+#ifdef __LARGE64_FILES
+int _EXFUN(_fstat64,( int __fd, struct stat64 *__sbuf ));
+#endif
#endif
#endif /* !_STAT_H_ */