diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2006-01-20 00:01:21 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2006-01-20 00:01:21 +0000 |
commit | 4dc96c35706c2c732d895e3e923d831412141909 (patch) | |
tree | 6f3b961cbb727844fd1896d0ec029ee81d67b1ed /usr.sbin/ifstated | |
parent | bb9bc5f38e905964c1510cb74dcd43bbb8c821f4 (diff) |
Explicitly include limits.h if we are going to use its contents.
Diffstat (limited to 'usr.sbin/ifstated')
-rw-r--r-- | usr.sbin/ifstated/parse.y | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/ifstated/parse.y b/usr.sbin/ifstated/parse.y index 56844871c3a..d5097200a20 100644 --- a/usr.sbin/ifstated/parse.y +++ b/usr.sbin/ifstated/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.10 2005/08/03 16:29:36 sturm Exp $ */ +/* $OpenBSD: parse.y,v 1.11 2006/01/20 00:01:20 millert Exp $ */ /* * Copyright (c) 2004 Ryan McBride <mcbride@openbsd.org> @@ -36,6 +36,7 @@ #include <string.h> #include <syslog.h> #include <event.h> +#include <limits.h> #include "ifstated.h" |