diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2010-12-31 21:22:43 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2010-12-31 21:22:43 +0000 |
commit | 72bc7ae677c0c13cc45512ec2a960a2c71227142 (patch) | |
tree | 9dc1ba99b1a1de62a9ce29ab8705704de3ed1d36 /usr.sbin/bgpd/printconf.c | |
parent | e3fad9cd3eac21ca5d192e61a7453fc9a00f1937 (diff) |
Add missing #includes instead of assuming that some system header pulls in
the needed bits
ok deraadt@, millert@
Diffstat (limited to 'usr.sbin/bgpd/printconf.c')
-rw-r--r-- | usr.sbin/bgpd/printconf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/printconf.c b/usr.sbin/bgpd/printconf.c index 2a618942276..76d260b548d 100644 --- a/usr.sbin/bgpd/printconf.c +++ b/usr.sbin/bgpd/printconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: printconf.c,v 1.84 2010/08/06 14:32:13 jsg Exp $ */ +/* $OpenBSD: printconf.c,v 1.85 2010/12/31 21:22:42 guenther Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -16,6 +16,7 @@ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <limits.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |