Added #ifndef inline #endif around definition of inline so that we

do not end up definig it twice.
This commit is contained in:
Rodney W. Grimes 1993-08-29 01:59:05 +00:00
parent 4ada418a9b
commit f696d2e300
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=353

View File

@ -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