From e65d6715cebbb517e9691036773870de291df8cb Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Sun, 4 May 2003 02:25:07 +0000 Subject: [PATCH] Fixed powerpc compile. --- dlls/ntdll/signal_powerpc.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/dlls/ntdll/signal_powerpc.c b/dlls/ntdll/signal_powerpc.c index f9fce7409ac..bd1dad5a426 100644 --- a/dlls/ntdll/signal_powerpc.c +++ b/dlls/ntdll/signal_powerpc.c @@ -23,7 +23,6 @@ #include "config.h" #include "wine/port.h" -#include #include #include #include @@ -469,8 +468,6 @@ BOOL SIGNAL_Init(void) } #endif /* HAVE_SIGALTSTACK */ - sigfillset( &all_sigs ); - if (set_handler( SIGINT, have_sigaltstack, (void (*)())int_handler ) == -1) goto error; if (set_handler( SIGFPE, have_sigaltstack, (void (*)())fpe_handler ) == -1) goto error; if (set_handler( SIGSEGV, have_sigaltstack, (void (*)())segv_handler ) == -1) goto error;