Include sys/types.h header to get mode_t

Do not depend on it being included by other system headers.
It is not included by others on musl-libc, for example.
This commit is contained in:
Kylie McClain 2015-11-25 18:12:06 -05:00 committed by Brad King
parent b4a2ada297
commit 001043ac30

View File

@ -54,6 +54,8 @@
#if defined( _MSC_VER )
typedef unsigned short mode_t;
#else
# include <sys/types.h>
#endif
// use this class to shrink the size of symbols in .o files