Blame include/fcntl.h

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