ddfaa718b7
Following the addition of the in_addr/in6_addr structs
to in.h the header file must have stdint.h included
for the definitions of the uint8_t/uint32_t types used
within the new structs.
Not having it could results in the following errors
in places where in.h is included:
in.h:30:2: error: unknown type name 'uint32_t'
uint32_t s_addr;
in.h:34:2: error: unknown type name 'uint8_t'
uint8_t s6_addr[16];
Fixes:
|
||
---|---|---|
.. | ||
include | ||
eal_alarm.c | ||
eal_debug.c | ||
eal_file.c | ||
eal_hugepages.c | ||
eal_interrupts.c | ||
eal_lcore.c | ||
eal_log.c | ||
eal_memalloc.c | ||
eal_memory.c | ||
eal_mp.c | ||
eal_thread.c | ||
eal_timer.c | ||
eal_windows.h | ||
eal.c | ||
fnmatch.c | ||
getopt.c | ||
meson.build |