diff options
Diffstat (limited to 'lbl')
-rw-r--r-- | lbl/gnuc.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/lbl/gnuc.h b/lbl/gnuc.h deleted file mode 100644 index 5eb67358..00000000 --- a/lbl/gnuc.h +++ /dev/null @@ -1,28 +0,0 @@ -/* @(#) $Header: /tcpdump/master/tcpdump/lbl/Attic/gnuc.h,v 1.4 2000-07-10 04:29:27 assar Exp $ (LBL) */ - -/* Define __P() macro, if necessary */ -#ifndef __P -#if __STDC__ -#define __P(protos) protos -#else -#define __P(protos) () -#endif -#endif - -/* - * Handle new and old "dead" routine prototypes - * - * For example: - * - * __dead void foo(void) __attribute__((volatile)); - * - */ -#ifdef __GNUC__ -#ifndef __dead -#define __dead volatile -#endif -#else -#ifndef __dead -#define __dead -#endif -#endif |