Fix parameter name.
[glibc/pb-stable.git] / include / fcntl.h
blobb2c381235013991c11fdb3cad987fe93b7b2178d
1 #ifndef _FCNTL_H
2 #include <io/fcntl.h>
4 /* Now define the internal interfaces. */
5 extern int __open64 (__const char *__file, int __oflag, ...);
6 libc_hidden_proto (__open64)
7 extern int __libc_open64 (const char *file, int oflag, ...);
8 extern int __libc_open (const char *file, int oflag, ...);
9 libc_hidden_proto (__libc_open)
10 extern int __libc_creat (const char *file, mode_t mode);
11 extern int __libc_fcntl (int fd, int cmd, ...);
12 libc_hidden_proto (__libc_fcntl)
13 extern int __open (__const char *__file, int __oflag, ...);
14 libc_hidden_proto (__open)
15 extern int __fcntl (int __fd, int __cmd, ...);
16 libc_hidden_proto (__fcntl)
18 #endif