From fe42f3a89faa441ed979eb37f966212898d9654c Mon Sep 17 00:00:00 2001 From: das Date: Wed, 4 Mar 2009 03:33:38 +0000 Subject: [PATCH] Add *at to the POSIX.1-2008 namespace. --- sys/sys/stat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/stat.h b/sys/sys/stat.h index 4b70d19c8e5f..b31064130b0d 100644 --- a/sys/sys/stat.h +++ b/sys/sys/stat.h @@ -330,7 +330,7 @@ int mknod(const char *, mode_t, dev_t); #endif int stat(const char * __restrict, struct stat * __restrict); mode_t umask(mode_t); -#if __BSD_VISIBLE +#if __BSD_VISIBLE || __POSIX_VISIBLE >= 200809 int fstatat(int, const char *, struct stat *, int); int mkdirat(int, const char *, mode_t); int mkfifoat(int, const char *, mode_t);