From: assar Date: Tue, 11 Jul 2000 00:42:43 +0000 (+0000) Subject: not used any longer X-Git-Tag: libpcap-0.6.1~125 X-Git-Url: https://git.tcpdump.org/libpcap/commitdiff_plain/916c01aa0a177fbdec2ddf32013ccd2155f2c518 not used any longer --- diff --git a/lbl/gnuc.h b/lbl/gnuc.h deleted file mode 100644 index 13841ace..00000000 --- a/lbl/gnuc.h +++ /dev/null @@ -1,43 +0,0 @@ -/* @(#) $Header: /tcpdump/master/libpcap/lbl/Attic/gnuc.h,v 1.3 1999-10-07 23:46:41 mcr Exp $ (LBL) */ - -/* Define __P() macro, if necessary */ -#ifndef __P -#if __STDC__ -#define __P(protos) protos -#else -#define __P(protos) () -#endif -#endif - -/* inline foo */ -#ifdef __GNUC__ -#define inline __inline -#else -#define inline -#endif - -/* - * Handle new and old "dead" routine prototypes - * - * For example: - * - * __dead void foo(void) __attribute__((volatile)); - * - */ -#ifdef __GNUC__ -#ifndef __dead -#define __dead volatile -#endif -#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) -#ifndef __attribute__ -#define __attribute__(args) -#endif -#endif -#else -#ifndef __dead -#define __dead -#endif -#ifndef __attribute__ -#define __attribute__(args) -#endif -#endif