diff options
author | Kenjiro Cho <kjc@cvs.openbsd.org> | 2003-04-03 05:09:00 +0000 |
---|---|---|
committer | Kenjiro Cho <kjc@cvs.openbsd.org> | 2003-04-03 05:09:00 +0000 |
commit | 502e619704c721aacbda2f3228abd4ff7901250d (patch) | |
tree | ed3d216e455dd57a1e76ce841210be30ee0f0a06 /sbin/pfctl | |
parent | 9f460e24b686c92fed4fca1e0fb93274d0930222 (diff) |
explicitly include <sys/limits.h> for INT_MAX.
Diffstat (limited to 'sbin/pfctl')
-rw-r--r-- | sbin/pfctl/pfctl_altq.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/pfctl/pfctl_altq.c b/sbin/pfctl/pfctl_altq.c index f537fbe996e..091d13c9fdb 100644 --- a/sbin/pfctl/pfctl_altq.c +++ b/sbin/pfctl/pfctl_altq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pfctl_altq.c,v 1.47 2003/03/28 16:47:39 henning Exp $ */ +/* $OpenBSD: pfctl_altq.c,v 1.48 2003/04/03 05:08:59 kjc Exp $ */ /* * Copyright (C) 2002 @@ -30,6 +30,7 @@ #include <sys/types.h> #include <sys/ioctl.h> #include <sys/socket.h> +#include <sys/limits.h> #include <net/if.h> #include <netinet/in.h> |