mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-17 08:00:48 +01:00
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:
parent
413b01e6ac
commit
eae4034b95
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=13844
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user