summaryrefslogtreecommitdiffstats
path: root/newlib/libc/include/sys/stat.h
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/include/sys/stat.h')
-rw-r--r--newlib/libc/include/sys/stat.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/newlib/libc/include/sys/stat.h b/newlib/libc/include/sys/stat.h
index 1eb16ecd3..949508d6f 100644
--- a/newlib/libc/include/sys/stat.h
+++ b/newlib/libc/include/sys/stat.h
@@ -129,6 +129,14 @@ int _EXFUN(lstat,( const char *__path, struct stat *__buf ));
int _EXFUN(mknod,( const char *__path, mode_t __mode, dev_t __dev ));
#endif
+#if defined (__CYGWIN__)
+int _EXFUN(fchmodat, (int, const char *, mode_t, int));
+int _EXFUN(fstatat, (int, const char *, struct __stat64 *, int));
+int _EXFUN(mkdirat, (int, const char *, mode_t));
+int _EXFUN(mkfifoat, (int, const char *, mode_t));
+int _EXFUN(mknodat, (int, const char *, mode_t, dev_t));
+#endif
+
/* Provide prototypes for most of the _<systemcall> names that are
provided in newlib for some compilers. */
#ifdef _COMPILING_NEWLIB