mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-08-30 22:05:23 +00:00
Use int instead of long for u_int32_t, since both are now 32 bits, but long might become 64 bits in a later UltraSPARC release
This commit is contained in:
@@ -39,11 +39,11 @@
|
||||
|
||||
#define int8_t char
|
||||
#define int16_t short
|
||||
#define int32_t long
|
||||
#define int32_t int
|
||||
|
||||
#define u_int8_t unsigned char
|
||||
#define u_int16_t unsigned short
|
||||
#define u_int32_t unsigned long
|
||||
#define u_int32_t unsigned int
|
||||
|
||||
/* No endian.h either. */
|
||||
/*
|
||||
|
@@ -39,11 +39,11 @@
|
||||
|
||||
#define int8_t char
|
||||
#define int16_t short
|
||||
#define int32_t long
|
||||
#define int32_t int
|
||||
|
||||
#define u_int8_t unsigned char
|
||||
#define u_int16_t unsigned short
|
||||
#define u_int32_t unsigned long
|
||||
#define u_int32_t unsigned int
|
||||
|
||||
/* No endian.h either. */
|
||||
/*
|
||||
|
Reference in New Issue
Block a user