msvc: include sigset_t definition

On MSVC (VS2008) sigset_t is not defined. Signed-off-by: Philip Oakley <philipoakley@iee.org> Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Philip Oakley committed Jun 19, 2019 at 14:06 UTC 7ca46634bc086568b106e06b0637a0b643f2c78d
1 file changed +2
compat/msvc.h
+2
@@ -18,6 +18,8 @@
18
19 #undef ERROR
20
21 +typedef int sigset_t;
22 +
23 #include "compat/mingw.h"
24
25 #endif