From f7dc844c5652411a44927230f029b98137abb0b4 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Thu, 12 Jan 2006 10:42:12 +0000 Subject: Add fcntl64 prototype --- include/fcntl.h | 3 +++ 1 file changed, 3 insertions(+) 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, -- cgit v1.2.3