diff options
author | 2003-07-18 23:05:13 +0000 | |
---|---|---|
committer | 2003-07-18 23:05:13 +0000 | |
commit | 26fda0efb9ec24d261dd2a0d7555cf97a82c0069 (patch) | |
tree | 25da477e473613aad2841d01d2c8afafcd65d61f /lib/libpcap | |
parent | caddr_t -> void *. ok millert@ tdeval@ (diff) | |
download | wireguard-openbsd-26fda0efb9ec24d261dd2a0d7555cf97a82c0069.tar.xz wireguard-openbsd-26fda0efb9ec24d261dd2a0d7555cf97a82c0069.zip |
add missing includes
ok tedu@
Diffstat (limited to 'lib/libpcap')
-rw-r--r-- | lib/libpcap/grammar.y | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libpcap/grammar.y b/lib/libpcap/grammar.y index 7ac78380cf1..24aee92b971 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: /home/cvs/src/lib/libpcap/grammar.y,v 1.11 2003/05/14 08:50:37 canacar Exp $ (LBL)"; + "@(#) $Header: /home/cvs/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" |