diff options
author | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1993-08-29 01:59:05 +0000 |
---|---|---|
committer | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1993-08-29 01:59:05 +0000 |
commit | f696d2e3002d585d99a77536b86db9e1174d0764 (patch) | |
tree | 2d312584d28e8202095a5fe3096abe03ee18c913 /usr.sbin | |
parent | 4ada418a9ba97ab3c7c2a28a2012c820d9cd7f8b (diff) | |
download | src-f696d2e3002d585d99a77536b86db9e1174d0764.tar.gz src-f696d2e3002d585d99a77536b86db9e1174d0764.zip |
Added #ifndef inline #endif around definition of inline so that we
do not end up definig it twice.
Notes
Notes:
svn path=/head/; revision=353
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/tcpdump/tcpdump/interface.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/tcpdump/tcpdump/interface.h b/usr.sbin/tcpdump/tcpdump/interface.h index dfccba6e6730..1ff89ff3f5be 100644 --- a/usr.sbin/tcpdump/tcpdump/interface.h +++ b/usr.sbin/tcpdump/tcpdump/interface.h @@ -18,11 +18,13 @@ * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * @(#) $Header: interface.h,v 1.46 92/06/02 17:57:22 mccanne Exp $ (LBL) + * @(#) $Header: /a/cvs/386BSD/src/contrib/tcpdump/tcpdump/interface.h,v 1.1.1.1 1993/06/12 14:42:12 rgrimes Exp $ (LBL) */ #ifdef __GNUC__ +#ifndef inline #define inline __inline +#endif #else #define inline #endif |