diff options
Diffstat (limited to 'libc/include/sys/stat.h')
-rw-r--r-- | libc/include/sys/stat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/include/sys/stat.h b/libc/include/sys/stat.h index 7ab0f82..5e6363f 100644 --- a/libc/include/sys/stat.h +++ b/libc/include/sys/stat.h @@ -77,6 +77,10 @@ extern int lstat(const char *, struct stat *); extern int mknod(const char *, mode_t, dev_t); extern mode_t umask(mode_t); +#define stat64 stat +#define fstat64 fstat +#define lstat64 lstat + static __inline__ int mkfifo(const char *__p, mode_t __m) { return mknod(__p, (__m & ~S_IFMT) | S_IFIFO, (dev_t)0); |