diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2008-11-17 21:27:04 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2008-11-17 21:27:04 +0000 |
commit | cc0b4df2e5178109fcaa37cb0e1fb3342ad7eb88 (patch) | |
tree | c8f8adf954fedc8b6b267ce22c60e08388cab5b7 /usr.sbin | |
parent | 597a0685e5a40e98cfe9962f7360568dac7197e6 (diff) |
add missing header needed by signal().
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/smtpd/control.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/control.c b/usr.sbin/smtpd/control.c index 82ddeb72315..6d9635c87c8 100644 --- a/usr.sbin/smtpd/control.c +++ b/usr.sbin/smtpd/control.c @@ -1,4 +1,4 @@ -/* $OpenBSD: control.c,v 1.2 2008/11/05 12:14:45 sobrado Exp $ */ +/* $OpenBSD: control.c,v 1.3 2008/11/17 21:27:03 chl Exp $ */ /* * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -29,6 +29,7 @@ #include <event.h> #include <fcntl.h> #include <pwd.h> +#include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |