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

sys/net/routing/aodvv2: Add missing inttypes.h includes

This commit is contained in:
Joakim Gebart 2015-07-06 17:50:11 +02:00
parent de3bd08798
commit 8f2da1d3d0
2 changed files with 8 additions and 0 deletions

View File

@ -27,6 +27,11 @@
#define ENABLE_DEBUG (0)
#include "debug.h"
#if ENABLE_DEBUG
/* For PRIu16 etc. */
#include <inttypes.h>
#endif
#define VERBOSE_DEBUG (0)
#if VERBOSE_DEBUG
#define VDEBUG(...) AODV_DEBUG(__VA_ARGS__)

View File

@ -17,6 +17,9 @@
* @author Lotte Steenbrink <lotte.steenbrink@fu-berlin.de>
*/
#include <stdio.h>
#include <inttypes.h>
#include "routingtable.h"
#include "aodv_debug.h"