diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-11-18 19:17:17 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-11-18 19:17:17 +0000 |
commit | a472290f3eedcf897c817d64f81eb235b7bf937c (patch) | |
tree | ae8234642b1f54b3058f5069851ddf5bca9d9b63 /newlib/libc/include/sys/fcntl.h | |
parent | 8f4dfcaa1fa1f21e16a4759693fe735568bb138f (diff) | |
download | cygnal-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/fcntl.h')
-rw-r--r-- | newlib/libc/include/sys/fcntl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/newlib/libc/include/sys/fcntl.h b/newlib/libc/include/sys/fcntl.h index 5f3137e7d..f358a8fab 100644 --- a/newlib/libc/include/sys/fcntl.h +++ b/newlib/libc/include/sys/fcntl.h @@ -171,6 +171,9 @@ extern int fcntl _PARAMS ((int, int, ...)); of newlib. */ extern int _open _PARAMS ((const char *, int, ...)); extern int _fcntl _PARAMS ((int, int, ...)); +#ifdef __LARGE64_FILES +extern int _open64 _PARAMS ((const char *, int, ...)); +#endif #ifdef __cplusplus } |