aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/test_syscalls.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_syscalls.c b/test/test_syscalls.c
index e9a5189..db4be56 100644
--- a/test/test_syscalls.c
+++ b/test/test_syscalls.c
@@ -14,6 +14,10 @@
#include <sys/types.h>
#include <sys/stat.h>
+#ifndef ALLPERMS
+# define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)/* 07777 */
+#endif
+
static char testfile[1024];
static char testfile2[1024];