Add S_IRGRP and S_IROTH to include/compat/fcntl.h for ocspcheck

This commit is contained in:
kinichiro 2017-01-27 02:37:52 +09:00
parent e57ab149c2
commit f5026b1f3c

View File

@ -30,3 +30,11 @@
#ifndef FD_CLOEXEC
#define FD_CLOEXEC 1
#endif
#ifndef S_IRGRP
#define S_IRGRP 0
#endif
#ifndef S_IROTH
#define S_IROTH 0
#endif