aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkinichiro <kinichiro.inoguchi@gmail.com>2017-01-27 02:37:52 +0900
committerkinichiro <kinichiro.inoguchi@gmail.com>2017-01-26 17:51:49 +0900
commitf5026b1f3c66db61618e64f6d634c5ad170a2404 (patch)
treeca3e0812d04ddcc2e6a031c41036175a728980bf
parente57ab149c288b633285d5dee3ee4fc61b542fe50 (diff)
downloadportable-f5026b1f3c66db61618e64f6d634c5ad170a2404.tar.gz
portable-f5026b1f3c66db61618e64f6d634c5ad170a2404.tar.bz2
portable-f5026b1f3c66db61618e64f6d634c5ad170a2404.zip
Add S_IRGRP and S_IROTH to include/compat/fcntl.h for ocspcheck
-rw-r--r--include/compat/fcntl.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/compat/fcntl.h b/include/compat/fcntl.h
index 7dfedc6..feddb7b 100644
--- a/include/compat/fcntl.h
+++ b/include/compat/fcntl.h
@@ -30,3 +30,11 @@
30#ifndef FD_CLOEXEC 30#ifndef FD_CLOEXEC
31#define FD_CLOEXEC 1 31#define FD_CLOEXEC 1
32#endif 32#endif
33
34#ifndef S_IRGRP
35#define S_IRGRP 0
36#endif
37
38#ifndef S_IROTH
39#define S_IROTH 0
40#endif