Blame include/fcntl.h

Packit 6c4009
#ifndef _FCNTL_H
Packit 6c4009
#include <io/fcntl.h>
Packit 6c4009
Packit 6c4009
#ifndef _ISOMAC
Packit 6c4009
/* Now define the internal interfaces.  */
Packit 6c4009
extern int __open64 (const char *__file, int __oflag, ...);
Packit 6c4009
libc_hidden_proto (__open64)
Packit 6c4009
extern int __libc_open64 (const char *file, int oflag, ...);
Packit 6c4009
extern int __libc_open (const char *file, int oflag, ...);
Packit 6c4009
libc_hidden_proto (__libc_open)
Packit 6c4009
extern int __libc_fcntl (int fd, int cmd, ...);
Packit 6c4009
libc_hidden_proto (__libc_fcntl)
Packit 6c4009
extern int __fcntl64_nocancel_adjusted (int fd, int cmd, void *arg)
Packit 6c4009
   attribute_hidden;
Packit 6c4009
extern int __libc_fcntl64 (int fd, int cmd, ...);
Packit 6c4009
libc_hidden_proto (__libc_fcntl64)
Packit 6c4009
extern int __open (const char *__file, int __oflag, ...);
Packit 6c4009
libc_hidden_proto (__open)
Packit 6c4009
extern int __fcntl (int __fd, int __cmd, ...);
Packit 6c4009
libc_hidden_proto (__fcntl)
Packit 6c4009
extern int __fcntl64 (int __fd, int __cmd, ...) attribute_hidden;
Packit 6c4009
libc_hidden_proto (__fcntl64)
Packit 6c4009
extern int __openat (int __fd, const char *__file, int __oflag, ...)
Packit 6c4009
  __nonnull ((2));
Packit 6c4009
libc_hidden_proto (__openat)
Packit 6c4009
extern int __openat64 (int __fd, const char *__file, int __oflag, ...)
Packit 6c4009
  __nonnull ((2));
Packit 6c4009
libc_hidden_proto (__openat64)
Packit 6c4009
Packit 6c4009
extern int __open_2 (const char *__path, int __oflag);
Packit 6c4009
extern int __open64_2 (const char *__path, int __oflag);
Packit 6c4009
extern int __openat_2 (int __fd, const char *__path, int __oflag);
Packit 6c4009
extern int __openat64_2 (int __fd, const char *__path, int __oflag);
Packit 6c4009
Packit 6c4009
Packit 6c4009
#if IS_IN (rtld)
Packit 6c4009
#  include <dl-fcntl.h>
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
/* Flag determining whether the *at system calls are available.  */
Packit 6c4009
extern int __have_atfcts attribute_hidden;
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
#endif