1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-16 01:53:51 +01:00

sys/net/link_layer/net_if: Add missing inttypes.h include

This commit is contained in:
Joakim Gebart 2015-07-06 18:05:41 +02:00
parent 6577d21049
commit b35c2782da

View File

@ -26,6 +26,11 @@
#define ENABLE_DEBUG (0)
#include "debug.h"
#if ENABLE_DEBUG
/* For PRIu16 etc. */
#include <inttypes.h>
#endif
net_if_t interfaces[NET_IF_MAX];
#if ENABLE_DEBUG