diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2024-01-24 17:15:53 +0100 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2024-01-31 20:11:58 +0100 |
commit | 3600654b78cc5e1482330d6d03ca87d5aeab04de (patch) | |
tree | 3f7df776a058bb400e2b25b1c2fc82e365ec1067 /newlib/libc | |
parent | 62ca95721a14f43c680f3c4d77a872a607b553a6 (diff) | |
download | newlib-3600654b78cc5e1482330d6d03ca87d5aeab04de.zip newlib-3600654b78cc5e1482330d6d03ca87d5aeab04de.tar.gz newlib-3600654b78cc5e1482330d6d03ca87d5aeab04de.tar.bz2 |
sys/stat.h: drop __INSIDE_CYGWIN__ guards
These were only necessary until we dropped 32 bit Cygwin.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/include/sys/stat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/include/sys/stat.h b/newlib/libc/include/sys/stat.h index 98f5add..b4e27f2 100644 --- a/newlib/libc/include/sys/stat.h +++ b/newlib/libc/include/sys/stat.h @@ -147,7 +147,7 @@ int lstat (const char *__restrict __path, struct stat *__restrict __buf ); int mknod (const char *__path, mode_t __mode, dev_t __dev ); #endif -#if __ATFILE_VISIBLE && !defined(__INSIDE_CYGWIN__) +#if __ATFILE_VISIBLE int fchmodat (int, const char *, mode_t, int); int fstatat (int, const char *__restrict , struct stat *__restrict, int); int mkdirat (int, const char *, mode_t); @@ -155,7 +155,7 @@ int mkfifoat (int, const char *, mode_t); int mknodat (int, const char *, mode_t, dev_t); int utimensat (int, const char *, const struct timespec [2], int); #endif -#if __POSIX_VISIBLE >= 200809 && !defined(__INSIDE_CYGWIN__) +#if __POSIX_VISIBLE >= 200809 int futimens (int, const struct timespec [2]); #endif |