diff options
author | hsu <hsu@FreeBSD.org> | 1996-02-02 06:17:42 +0000 |
---|---|---|
committer | hsu <hsu@FreeBSD.org> | 1996-02-02 06:17:42 +0000 |
commit | dc7dcae54798a8060e8d2f5d0aa8832b4b231279 (patch) | |
tree | 9ff665f95219ee56bda49e302eba48075949c1a7 /usr.sbin | |
parent | 80aa0b1b791b6046ec36dee6330be943037f208a (diff) | |
download | FreeBSD-src-dc7dcae54798a8060e8d2f5d0aa8832b4b231279.zip FreeBSD-src-dc7dcae54798a8060e8d2f5d0aa8832b4b231279.tar.gz |
There is no longer a typedef clash with <rpc/auth.h>, so remove
conditional. Also, use the system defined fixed sized types.
This removes a 32-bit dependency on non-32-bit architectures.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/tcpdump/tcpdump/md.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.sbin/tcpdump/tcpdump/md.h b/usr.sbin/tcpdump/tcpdump/md.h index 9df5e9b..65085d2 100644 --- a/usr.sbin/tcpdump/tcpdump/md.h +++ b/usr.sbin/tcpdump/tcpdump/md.h @@ -18,7 +18,7 @@ * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * @(#) $Header: md-i386.h,v 1.5 94/06/14 20:14:40 leres Exp $ (LBL) + * @(#) $Header: /home/ncvs/src/usr.sbin/tcpdump/tcpdump/md.h,v 1.2 1995/03/08 12:52:17 olah Exp $ (LBL) */ #define TCPDUMP_ALIGN @@ -27,7 +27,5 @@ /* 32-bit data types */ /* N.B.: this doesn't address printf()'s %d vs. %ld formats */ -typedef long int32; /* signed 32-bit integer */ -#ifndef AUTH_UNIX -typedef u_long u_int32; /* unsigned 32-bit integer */ -#endif +typedef int32_t int32; /* signed 32-bit integer */ +typedef u_int32_t u_int32; /* unsigned 32-bit integer */ |