From 0d8d278f357c24f8a2f930b2c610d90fa7dc7b8a Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Sat, 12 Jan 2013 21:41:00 +0100 Subject: [PATCH] include stdint.h --- sys/net/net_help/net_help.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/net/net_help/net_help.h b/sys/net/net_help/net_help.h index d1773f3d6f..54aabe1a99 100644 --- a/sys/net/net_help/net_help.h +++ b/sys/net/net_help/net_help.h @@ -8,6 +8,7 @@ #ifndef COMMON_H_ #define COMMON_H_ #include +#include #define BITSET(var,pos) ((var) & (1<<(pos))) #define HTONS(a) ((((uint16_t) (a) >> 8) & 0xff) | ((((uint16_t) (a)) & 0xff) << 8))