diff options
author | guy <guy> | 2002-03-24 23:21:51 +0000 |
---|---|---|
committer | guy <guy> | 2002-03-24 23:21:51 +0000 |
commit | fdaba9c2a6db9b0a9dfb793baf8ab3cb33492c0e (patch) | |
tree | e8555fcd5746ed9124bf2905da081e17b86ce5d1 /bpf_image.c | |
parent | 7346580de5ca6e4d0f2b2dd28d694ed34c48fab2 (diff) |
<pcap.h> includes <sys/types.h> and <sys/time.h>; there's no need to
include it in these files, as they either include "pcap-int.h", which
includes <pcap.h>, or they include <pcap.h> directly.
Diffstat (limited to 'bpf_image.c')
-rw-r--r-- | bpf_image.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/bpf_image.c b/bpf_image.c index ab225eda..d38d978c 100644 --- a/bpf_image.c +++ b/bpf_image.c @@ -21,16 +21,13 @@ #ifndef lint static const char rcsid[] = - "@(#) $Header: /tcpdump/master/libpcap/bpf_image.c,v 1.24 2000-07-11 00:37:04 assar Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/libpcap/bpf_image.c,v 1.25 2002-03-24 23:21:51 guy Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H #include "config.h" #endif -#include <sys/types.h> -#include <sys/time.h> - #include <stdio.h> #include <string.h> |