Replace <sys/param.h> with <limits.h>
authorderaadt <deraadt@openbsd.org>
Fri, 16 Jan 2015 14:36:44 +0000 (14:36 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 16 Jan 2015 14:36:44 +0000 (14:36 +0000)
millert spotted the accidental <ctype.h> removal that caused binary change.

usr.sbin/lpr/pac/pac.c

index 27b6aa4..bf48b9d 100644 (file)
@@ -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 $ */
 
 /*
  * 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>