diff options
Diffstat (limited to 'include/mingw.h')
-rw-r--r-- | include/mingw.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/mingw.h b/include/mingw.h index 59218a9df..c26e16bc7 100644 --- a/include/mingw.h +++ b/include/mingw.h | |||
@@ -109,9 +109,12 @@ 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 setitimer(int type, struct itimerval *in, struct itimerval *out); |
113 | int sigaction(int sig, struct sigaction *in, struct sigaction *out); | ||
114 | sighandler_t mingw_signal(int sig, sighandler_t handler); | ||
113 | NOIMPL(sigfillset,int *mask UNUSED_PARAM); | 115 | NOIMPL(sigfillset,int *mask UNUSED_PARAM); |
114 | 116 | ||
117 | #define signal mingw_signal | ||
115 | /* | 118 | /* |
116 | * stdio.h | 119 | * stdio.h |
117 | */ | 120 | */ |