summaryrefslogtreecommitdiff
path: root/lib/libpcap
diff options
context:
space:
mode:
authorDavid Krause <david@cvs.openbsd.org>2003-07-18 23:05:14 +0000
committerDavid Krause <david@cvs.openbsd.org>2003-07-18 23:05:14 +0000
commit0470d3c1e67d8bcfa4897e2df4090e4651fc61fd (patch)
treee765f51e1364f95e38e341927ae1039df4dc8efd /lib/libpcap
parent43f142e04267bb0aeca66556f3e3b79fc0fbb538 (diff)
add missing includes
ok tedu@
Diffstat (limited to 'lib/libpcap')
-rw-r--r--lib/libpcap/grammar.y5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libpcap/grammar.y b/lib/libpcap/grammar.y
index 6de982046b7..71fa37bba12 100644
--- a/lib/libpcap/grammar.y
+++ b/lib/libpcap/grammar.y
@@ -1,5 +1,5 @@
%{
-/* $OpenBSD: grammar.y,v 1.11 2003/05/14 08:50:37 canacar Exp $ */
+/* $OpenBSD: grammar.y,v 1.12 2003/07/18 23:05:13 david Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996
@@ -24,7 +24,7 @@
*/
#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /cvs/OpenBSD/src/lib/libpcap/grammar.y,v 1.11 2003/05/14 08:50:37 canacar Exp $ (LBL)";
+ "@(#) $Header: /cvs/OpenBSD/src/lib/libpcap/grammar.y,v 1.12 2003/07/18 23:05:13 david Exp $ (LBL)";
#endif
#include <sys/types.h>
@@ -42,6 +42,7 @@ struct rtentry;
#include <net/pfvar.h>
#include <stdio.h>
+#include <string.h>
#include "pcap-int.h"