mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-14 15:20:04 +00:00
820aa71c42
Move __libc_open and __libc_open64 to here.
10 lines
344 B
C
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
|