summaryrefslogtreecommitdiffstats
path: root/contrib/tcpdump/decnet.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/tcpdump/decnet.h')
-rw-r--r--contrib/tcpdump/decnet.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/contrib/tcpdump/decnet.h b/contrib/tcpdump/decnet.h
index c356bcb..9a5c147 100644
--- a/contrib/tcpdump/decnet.h
+++ b/contrib/tcpdump/decnet.h
@@ -18,10 +18,18 @@
* WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * @(#) $Header: /tcpdump/master/tcpdump/decnet.h,v 1.7 2000/10/03 02:54:55 itojun Exp $ (LBL)
+ * @(#) $Header: /tcpdump/master/tcpdump/decnet.h,v 1.11 2002/12/11 07:13:50 guy Exp $ (LBL)
*/
+#ifndef WIN32
typedef u_int8_t byte[1]; /* single byte field */
+#else
+/*
+ * the keyword 'byte' generates conflicts in Windows
+ */
+typedef unsigned char Byte[1]; /* single byte field */
+#define byte Byte
+#endif /* WIN32 */
typedef u_int8_t word[2]; /* 2 byte field */
typedef u_int8_t longword[4]; /* 4 bytes field */
OpenPOWER on IntegriCloud