diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-12 10:42:12 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-12 10:42:12 +0000 |
commit | f7dc844c5652411a44927230f029b98137abb0b4 (patch) | |
tree | d3456ec6c303dd585ee99c3f6b20ac0707e7c18d /include | |
parent | 0a2e17d7c76cfab0e1950e50d309e1afab5029ff (diff) |
Add fcntl64 prototype
Diffstat (limited to 'include')
-rw-r--r-- | include/fcntl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/fcntl.h b/include/fcntl.h index b7b62ae33..a43890215 100644 --- a/include/fcntl.h +++ b/include/fcntl.h @@ -79,6 +79,9 @@ extern int __REDIRECT (fcntl, (int __fd, int __cmd, ...), fcntl64); # define fcntl fcntl64 # endif #endif +#ifdef __USE_LARGEFILE64 +extern int fcntl64 (int __fd, int __cmd, ...); +#endif /* Open FILE and return a new file descriptor for it, or -1 on error. OFLAG determines the type of access used. If O_CREAT is on OFLAG, |