summaryrefslogtreecommitdiff
path: root/include/fcntl.h
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2006-01-12 10:42:12 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2006-01-12 10:42:12 +0000
commitf7dc844c5652411a44927230f029b98137abb0b4 (patch)
treed3456ec6c303dd585ee99c3f6b20ac0707e7c18d /include/fcntl.h
parent0a2e17d7c76cfab0e1950e50d309e1afab5029ff (diff)
Add fcntl64 prototype
Diffstat (limited to 'include/fcntl.h')
-rw-r--r--include/fcntl.h3
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,