diff options
author | Brad Smith <brad@cvs.openbsd.org> | 1999-09-16 17:06:49 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 1999-09-16 17:06:49 +0000 |
commit | e9c12cf301433deac4dc711088d2080134a32414 (patch) | |
tree | 9755fef3f2ee7776bbe64ca383b43f3331800636 /usr.sbin/tcpdump/print-ether.c | |
parent | 2107b8951627eeb46878dab0113c6b248ba91ab0 (diff) |
#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 03c560d7973..0642e7d02e7 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: /cvs/OpenBSD/src/usr.sbin/tcpdump/print-ether.c,v 1.8 1999/07/28 20:41:36 jakob Exp $ (LBL)"; + "@(#) $Header: /cvs/OpenBSD/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 |