glibc/include/fcntl.h
Ulrich Drepper 820aa71c42 Declare __libc_fcntl.
Move __libc_open and __libc_open64 to here.
2000-01-08 05:13:37 +00:00

10 lines
344 B
C

#ifndef _FCNTL_H
#include <io/fcntl.h>
/* Now define the internal interfaces. */
extern int __open64 __P ((__const char *__file, int __oflag, ...));
extern int __libc_open64 __P ((const char *file, int oflag, ...));
extern int __libc_open __P ((const char *file, int oflag, ...));
extern int __libc_fcntl __P ((int fd, int cmd, ...));
#endif