summaryrefslogtreecommitdiff
path: root/lbl
diff options
context:
space:
mode:
authorassar <assar>2000-07-11 00:52:21 +0000
committerassar <assar>2000-07-11 00:52:21 +0000
commitfcf0144ed224f770c906866a42a9ffa1d707c429 (patch)
treebf9e6a6c6a810727d96f4a7acfd7a7b10993b97f /lbl
parent83d6304aa9b3f2e2ad8e12724ba8f0aa8b6c4783 (diff)
downloadtcpdump-fcf0144ed224f770c906866a42a9ffa1d707c429.tar.gz
not used
Diffstat (limited to 'lbl')
-rw-r--r--lbl/gnuc.h28
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