diff options
author | 1999-09-16 17:06:48 +0000 | |
---|---|---|
committer | 1999-09-16 17:06:48 +0000 | |
commit | c97f8ba7ce280050c65d4de1f0ddb6fe60dc4ab6 (patch) | |
tree | f28ac4a7ded84a0885a1c9c415f87551dc96c062 /usr.sbin/tcpdump/print-ether.c | |
parent | match/attach 3c980c (diff) | |
download | wireguard-openbsd-c97f8ba7ce280050c65d4de1f0ddb6fe60dc4ab6.tar.xz wireguard-openbsd-c97f8ba7ce280050c65d4de1f0ddb6fe60dc4ab6.zip |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'usr.sbin/tcpdump/print-ether.c')
-rw-r--r-- | usr.sbin/tcpdump/print-ether.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/tcpdump/print-ether.c b/usr.sbin/tcpdump/print-ether.c index aa5e3ce9dfa..3d7fadc2459 100644 --- a/usr.sbin/tcpdump/print-ether.c +++ b/usr.sbin/tcpdump/print-ether.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996 + * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -20,14 +20,14 @@ */ #ifndef lint static const char rcsid[] = - "@(#) $Header: /home/cvs/src/usr.sbin/tcpdump/print-ether.c,v 1.8 1999/07/28 20:41:36 jakob Exp $ (LBL)"; + "@(#) $Header: /home/cvs/src/usr.sbin/tcpdump/print-ether.c,v 1.9 1999/09/16 17:06:48 brad Exp $ (LBL)"; #endif #include <sys/param.h> #include <sys/time.h> #include <sys/socket.h> -#if __STDC__ +#ifdef __STDC__ struct mbuf; struct rtentry; #endif |