1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 22:13:52 +01:00

sys/net/application_layer/ng_zep: Add missing inttypes.h includes

This commit is contained in:
Joakim Gebart 2015-07-06 17:50:36 +02:00
parent 8f2da1d3d0
commit aaeaa968e6

View File

@ -37,6 +37,11 @@
#define ENABLE_DEBUG (0)
#include "debug.h"
#if ENABLE_DEBUG
/* For PRIu16 etc. */
#include <inttypes.h>
#endif
#define _EVENT_RX_STARTED (1)
#define _EVENT_RX_COMPLETE (2)
#define _RX_BUF_SIZE (16U * sizeof(ng_pktsnip_t *))