msvc: define O_ACCMODE
[gitweb.git] / compat / msvc.h
index 29a8ce820435d5c67dd5fd9bc23dab0c2e7d8394..d336d806704d3902c2b631053574626abab3adc1 100644 (file)
 
 #undef ERROR
 
+typedef int sigset_t;
+/* open for reading, writing, or both (not in fcntl.h) */
+#define O_ACCMODE     (_O_RDONLY | _O_WRONLY | _O_RDWR)
+
 #include "compat/mingw.h"
 
 #endif