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:
parent
42cfa32077
commit
84114f3cc5
@ -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"
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user