mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
sys/net/network_layer/ng_sixlowpan: Add missing inttypes.h includes
This commit is contained in:
parent
555085acdc
commit
42cfa32077
@ -25,6 +25,11 @@
|
||||
#define ENABLE_DEBUG (0)
|
||||
#include "debug.h"
|
||||
|
||||
#if ENABLE_DEBUG
|
||||
/* For PRIu16 etc. */
|
||||
#include <inttypes.h>
|
||||
#endif
|
||||
|
||||
static uint16_t _tag;
|
||||
|
||||
static inline uint16_t _floor8(uint16_t length)
|
||||
|
@ -25,6 +25,11 @@
|
||||
#define ENABLE_DEBUG (0)
|
||||
#include "debug.h"
|
||||
|
||||
#if ENABLE_DEBUG
|
||||
/* For PRIu16 etc. */
|
||||
#include <inttypes.h>
|
||||
#endif
|
||||
|
||||
static kernel_pid_t _pid = KERNEL_PID_UNDEF;
|
||||
|
||||
#if ENABLE_DEBUG
|
||||
|
@ -13,6 +13,7 @@
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#include "od.h"
|
||||
#include "net/ng_ipv6/hdr.h"
|
||||
|
Loading…
Reference in New Issue
Block a user