2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-29 21:38:10 +00:00

Define u_int64_t so we can do a safe case from a 64-bit pointer to an int.

This commit is contained in:
Ted Lemon 1997-06-03 02:12:43 +00:00
parent a37e5e0930
commit 40eb4a5c1c

View File

@ -43,6 +43,7 @@ typedef int int32_t;
typedef unsigned char u_int8_t;
typedef unsigned short u_int16_t;
typedef unsigned int u_int32_t;
typedef unsigned long u_int64_t;
#include <syslog.h>
#include <sys/types.h>