summaryrefslogtreecommitdiff
path: root/usr.sbin/lpr
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2015-01-16 14:36:45 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2015-01-16 14:36:45 +0000
commit847ccc0dd10dd15092bb6eb95bc558244d49e39b (patch)
treec75103f2236691543aad8f0c5a9b32740d00c191 /usr.sbin/lpr
parentd3d7dfebd243c5ecf7915e85f0c4e6dcedd62efe (diff)
Replace <sys/param.h> with <limits.h>
millert spotted the accidental <ctype.h> removal that caused binary change.
Diffstat (limited to 'usr.sbin/lpr')
-rw-r--r--usr.sbin/lpr/pac/pac.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/lpr/pac/pac.c b/usr.sbin/lpr/pac/pac.c
index 27b6aa40cc4..bf48b9dae11 100644
--- a/usr.sbin/lpr/pac/pac.c
+++ b/usr.sbin/lpr/pac/pac.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pac.c,v 1.22 2014/11/18 20:54:28 krw Exp $ */
+/* $OpenBSD: pac.c,v 1.23 2015/01/16 14:36:44 deraadt Exp $ */
/* $NetBSD: pac.c,v 1.14 2000/04/27 13:40:18 msaitoh Exp $ */
/*
@@ -38,14 +38,14 @@
* to print the usage information for the named people.
*/
-#include <sys/param.h>
-
#include <ctype.h>
+#include <signal.h>
#include <dirent.h>
#include <err.h>
#include <errno.h>
#include <stdlib.h>
#include <unistd.h>
+#include <limits.h>
#include <stdio.h>
#include <string.h>