diff options
Diffstat (limited to 'include/mingw.h')
-rw-r--r-- | include/mingw.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/mingw.h b/include/mingw.h index c5f72837b..0ff7f5442 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -109,9 +109,11 @@ struct sigaction { | |||
109 | #define sigemptyset(x) (void)0 | 109 | #define sigemptyset(x) (void)0 |
110 | #define SA_RESTART 0 | 110 | #define SA_RESTART 0 |
111 | 111 | ||
112 | NOIMPL(sigaction,int sig UNUSED_PARAM, struct sigaction *in UNUSED_PARAM, struct sigaction *out UNUSED_PARAM); | 112 | int sigaction(int sig, struct sigaction *in, struct sigaction *out); |
113 | sighandler_t mingw_signal(int sig, sighandler_t handler); | ||
113 | NOIMPL(sigfillset,int *mask UNUSED_PARAM); | 114 | NOIMPL(sigfillset,int *mask UNUSED_PARAM); |
114 | 115 | ||
116 | #define signal mingw_signal | ||
115 | /* | 117 | /* |
116 | * stdio.h | 118 | * stdio.h |
117 | */ | 119 | */ |