1
0
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:
Joakim Gebart 2015-07-06 17:49:07 +02:00
parent 555085acdc
commit 42cfa32077
3 changed files with 11 additions and 0 deletions

View File

@ -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)

View File

@ -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

View File

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