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

sys/*: add explicit include of timex.h

This commit is contained in:
Bas Stottelaar 2020-10-21 21:26:18 +02:00
parent ae8c700e6f
commit 47d376c5c3
8 changed files with 11 additions and 0 deletions

View File

@ -23,6 +23,7 @@
#include "log.h"
#include "random.h"
#include "byteorder.h"
#include "timex.h"
#include "net/asymcute.h"

View File

@ -26,6 +26,7 @@
#include "net/nanocoap_sock.h"
#include "net/sock/udp.h"
#include "timex.h"
#define ENABLE_DEBUG (0)
#include "debug.h"

View File

@ -41,6 +41,7 @@
#include "net/gnrc/sixlowpan/ctx.h"
#include "net/ndp.h"
#include "random.h"
#include "timex.h"
#ifdef __cplusplus
extern "C" {

View File

@ -25,6 +25,8 @@
#include "net/gnrc/ndp.h"
#include "timex.h"
#define ENABLE_DEBUG (0)
#include "debug.h"

View File

@ -27,6 +27,8 @@
#include "can/conn/raw.h"
#include "can/raw.h"
#include "timex.h"
#define SC_CAN_MAX_FILTERS 10
#define xstr(a) str(a)
#define str(a) #a

View File

@ -20,6 +20,8 @@
#include "net/gnrc/netif.h"
#include "net/ipv6/addr.h"
#include "timex.h"
static void _usage(char **argv);
static int _nib_neigh(int argc, char **argv);
static int _nib_prefix(int argc, char **argv);

View File

@ -24,6 +24,7 @@
#include "net/gnrc/rpl/dodag.h"
#include "utlist.h"
#include "trickle.h"
#include "xtimer.h"
#ifdef MODULE_GNRC_RPL_P2P
#include "net/gnrc/rpl/p2p.h"
#include "net/gnrc/rpl/p2p_dodag.h"

View File

@ -31,6 +31,7 @@
#include "net/nanocoap_sock.h"
#include "thread.h"
#include "periph/pm.h"
#include "xtimer.h"
#include "suit/transport/coap.h"
#include "net/sock/util.h"