1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-05 08:10:15 +02:00

*** empty log message ***

This commit is contained in:
Jim Meyering
2004-11-28 20:51:05 +00:00
parent 79e2f2c1f9
commit fa871415f9
+21
View File
@@ -0,0 +1,21 @@
#if HAVE_FCNTL_H
# include <fcntl.h>
#endif
#ifndef AT_FDCWD
/* FIXME: use the same value Solaris uses */
# define AT_FDCWD -999
# ifdef __OPENAT_PREFIX
# undef openat
# define __OPENAT_CONCAT(x, y) x ## y
# define __OPENAT_XCONCAT(x, y) __OPENAT_CONCAT (x, y)
# define __OPENAT_ID(y) __OPENAT_XCONCAT (__OPENAT_PREFIX, y)
# define openat __OPENAT_ID (openat)
/* FIXME: use proper prototype */
#if 0
int openat (int fd, char const *filename, int flags, /* mode_t mode */ ...);
#endif
int openat (int fd, char const *filename, int flags);
# endif
#endif