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.
This commit is contained in:
Jeffrey Hsu 1996-02-02 06:17:42 +00:00
parent 413b01e6ac
commit eae4034b95
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=13844

View File

@ -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 */