diff options
author | 1999-07-20 04:49:54 +0000 | |
---|---|---|
committer | 1999-07-20 04:49:54 +0000 | |
commit | 01efc7ef8ab68f8ab38c9fcffd34efd1d036b4b9 (patch) | |
tree | dfb5b8767bf0f7b2e8338f28172ba9469908e509 /lib/libpcap/optimize.c | |
parent | sync (diff) | |
download | wireguard-openbsd-01efc7ef8ab68f8ab38c9fcffd34efd1d036b4b9.tar.xz wireguard-openbsd-01efc7ef8ab68f8ab38c9fcffd34efd1d036b4b9.zip |
changes brought in from v0.4; started by brad, more by me, being tested by mts
Diffstat (limited to 'lib/libpcap/optimize.c')
-rw-r--r-- | lib/libpcap/optimize.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/lib/libpcap/optimize.c b/lib/libpcap/optimize.c index d3c420b6e45..a5df40531e7 100644 --- a/lib/libpcap/optimize.c +++ b/lib/libpcap/optimize.c @@ -1,4 +1,4 @@ -/* $OpenBSD: optimize.c,v 1.5 1996/09/16 02:33:07 tholo Exp $ */ +/* $OpenBSD: optimize.c,v 1.6 1999/07/20 04:49:55 deraadt Exp $ */ /* * Copyright (c) 1988, 1989, 1990, 1991, 1993, 1994, 1995, 1996 @@ -23,26 +23,25 @@ * Optimization module for tcpdump intermediate representation. */ #ifndef lint -static char rcsid[] = - "@(#) Header: optimize.c,v 1.58 96/06/16 22:36:59 leres Exp (LBL)"; +static const char rcsid[] = + "@(#) $Header: /home/cvs/src/lib/libpcap/optimize.c,v 1.6 1999/07/20 04:49:55 deraadt Exp $ (LBL)"; #endif #include <sys/types.h> #include <sys/time.h> -#include <net/bpf.h> - #include <stdio.h> #include <stdlib.h> #include <memory.h> +#include "pcap-int.h" + +#include "gencode.h" + #ifdef HAVE_OS_PROTO_H #include "os-proto.h" #endif -#include "pcap-int.h" -#include "gencode.h" - #ifdef BDEBUG extern int dflag; #endif |