From 97de159045b1458f287f85b94bf04f1ade3c0a2d Mon Sep 17 00:00:00 2001 From: Ron Koenderink Date: Sun, 16 Dec 2007 04:02:16 +0000 Subject: [PATCH] (sysdep_stdin_init) [_WIN32]: Add missing void for the parameter list. --- src/client/play.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/client/play.c b/src/client/play.c index bfb0cbcb..b10524b6 100644 --- a/src/client/play.c +++ b/src/client/play.c @@ -158,7 +158,7 @@ stdin_read_thread(LPVOID lpParam) * Initialize and start the stdin reading thread for WIN32 */ static void -sysdep_stdin_init() +sysdep_stdin_init(void) { bounce_empty = CreateEvent(NULL, FALSE, TRUE, "bounce_empty"); bounce_full = CreateEvent(NULL, TRUE, FALSE, "bounce_full"); @@ -283,6 +283,7 @@ w32_ring_from_file_or_bounce_buf(struct ring *r, int fd) w32_recv((sock), (buffer), (buf_size), 0) #define select(nfds, rd, wr, error, time) \ w32_select((nfds), (rd), (wr), (error), (time)) +#define sigemptyset(mask) ((void)0) #else #define sysdep_stdin_init() ((void)0) #endif