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: Add missing inttypes.h includes

This commit is contained in:
Joakim Gebart 2015-07-06 17:49:21 +02:00
parent 42cfa32077
commit 84114f3cc5
2 changed files with 6 additions and 0 deletions

View File

@ -13,6 +13,7 @@
*/ */
#include <stdio.h> #include <stdio.h>
#include <inttypes.h>
#include "net/ng_ipv6/hdr.h" #include "net/ng_ipv6/hdr.h"

View File

@ -32,6 +32,11 @@
#define ENABLE_DEBUG (0) #define ENABLE_DEBUG (0)
#include "debug.h" #include "debug.h"
#if ENABLE_DEBUG
/* For PRIu16 etc. */
#include <inttypes.h>
#endif
static ng_ipv6_netif_t ipv6_ifs[NG_NETIF_NUMOF]; static ng_ipv6_netif_t ipv6_ifs[NG_NETIF_NUMOF];
#if ENABLE_DEBUG #if ENABLE_DEBUG