mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
414a6b0d9c
2001-02-05 Andreas Jaeger <aj@suse.de> * io/fcntl.h: Move __fcntl and __open to... * include/fcntl.h: ...here.
13 lines
436 B
C
13 lines
436 B
C
#ifndef _FCNTL_H
|
|
#include <io/fcntl.h>
|
|
|
|
/* Now define the internal interfaces. */
|
|
extern int __open64 (__const char *__file, int __oflag, ...);
|
|
extern int __libc_open64 (const char *file, int oflag, ...);
|
|
extern int __libc_open (const char *file, int oflag, ...);
|
|
extern int __libc_fcntl (int fd, int cmd, ...);
|
|
extern int __open (__const char *__file, int __oflag, ...);
|
|
extern int __fcntl (int __fd, int __cmd, ...) __THROW;
|
|
|
|
#endif
|