aboutsummaryrefslogtreecommitdiff
path: root/include/mingw.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mingw.h')
-rw-r--r--include/mingw.h5
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
112NOIMPL(sigaction,int sig UNUSED_PARAM, struct sigaction *in UNUSED_PARAM, struct sigaction *out UNUSED_PARAM); 112int setitimer(int type, struct itimerval *in, struct itimerval *out);
113int sigaction(int sig, struct sigaction *in, struct sigaction *out);
114sighandler_t mingw_signal(int sig, sighandler_t handler);
113NOIMPL(sigfillset,int *mask UNUSED_PARAM); 115NOIMPL(sigfillset,int *mask UNUSED_PARAM);
114 116
117#define signal mingw_signal
115/* 118/*
116 * stdio.h 119 * stdio.h
117 */ 120 */