diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2006-01-02 16:23:27 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2006-01-02 16:23:27 +0000 |
commit | d192b9cf57ae69c785c1936d0c8c435683250ca8 (patch) | |
tree | 13c50da9c01795bb8822059a74d1a065915bf0c7 /libexec/lockspool | |
parent | 34b1d5f0e33a109d0eb2804eb42ea3978688e62e (diff) |
#include <signal.h>, not <sys/signal.h>
Diffstat (limited to 'libexec/lockspool')
-rw-r--r-- | libexec/lockspool/lockspool.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/lockspool/lockspool.c b/libexec/lockspool/lockspool.c index 200f6d815df..8025b3413ef 100644 --- a/libexec/lockspool/lockspool.c +++ b/libexec/lockspool/lockspool.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lockspool.c,v 1.11 2005/04/13 02:33:09 deraadt Exp $ */ +/* $OpenBSD: lockspool.c,v 1.12 2006/01/02 16:23:26 millert Exp $ */ /* * Copyright (c) 1998 Theo de Raadt <deraadt@theos.com> @@ -27,10 +27,10 @@ */ #ifndef lint -static const char rcsid[] = "$OpenBSD: lockspool.c,v 1.11 2005/04/13 02:33:09 deraadt Exp $"; +static const char rcsid[] = "$OpenBSD: lockspool.c,v 1.12 2006/01/02 16:23:26 millert Exp $"; #endif /* not lint */ -#include <sys/signal.h> +#include <signal.h> #include <pwd.h> #include <syslog.h> #include <unistd.h> |