summaryrefslogtreecommitdiff
path: root/openbox/openbox.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-03-21 20:25:34 +0000
committerDana Jansens <danakj@orodu.net>2003-03-21 20:25:34 +0000
commit0a69cfc6d2cf672634e95d5eb2015434dd924abc (patch)
treeef28312c548d2df4aa44b3e4cd29490427234767 /openbox/openbox.c
parentb10548f0ddf7ac9deb85372332686c6d8651a1f6 (diff)
add strict ansi compliance
Diffstat (limited to 'openbox/openbox.c')
-rw-r--r--openbox/openbox.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/openbox/openbox.c b/openbox/openbox.c
index a4f527b1..04e07ab6 100644
--- a/openbox/openbox.c
+++ b/openbox/openbox.c
@@ -19,9 +19,6 @@
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#endif
-#ifdef HAVE_SYS_SELECT_H
-# include <sys/select.h>
-#endif
#ifdef HAVE_SIGNAL_H
# include <signal.h>
#endif
@@ -78,7 +75,7 @@ int main(int argc, char **argv)
sigemptyset(&sigset);
action.sa_handler = dispatch_signal;
action.sa_mask = sigset;
- action.sa_flags = SA_NOCLDSTOP | SA_NODEFER;
+ action.sa_flags = SA_NOCLDSTOP;
sigaction(SIGUSR1, &action, (struct sigaction *) NULL);
sigaction(SIGPIPE, &action, (struct sigaction *) NULL);
sigaction(SIGSEGV, &action, (struct sigaction *) NULL);