2
0
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:
Ted Lemon
1996-05-23 22:24:48 +00:00
parent 49156c479b
commit c73856ba81
2 changed files with 4 additions and 4 deletions

View File

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

View File

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