1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/net/network_layer/ng_ipv6/nc: Add missing inttypes.h include

This commit is contained in:
Joakim Gebart 2015-07-07 09:47:53 +02:00
parent 767d3eb4df
commit b1dcd89390

View File

@ -29,6 +29,9 @@
#include "debug.h"
#if ENABLE_DEBUG
/* For PRIu8 etc. */
#include <inttypes.h>
static char addr_str[NG_IPV6_ADDR_MAX_STR_LEN];
#endif