1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:12:57 +01:00

core: remove redundant includes

This commit is contained in:
Kaspar Schleiser 2017-08-02 14:27:55 +02:00
parent 020c2a41ff
commit 68f13467d3
3 changed files with 0 additions and 4 deletions

View File

@ -23,7 +23,6 @@
#include <stdbool.h>
#include <errno.h>
#include "kernel_init.h"
#include "sched.h"
#include "thread.h"
#include "irq.h"
#include "log.h"

View File

@ -32,7 +32,6 @@
#define ENABLE_DEBUG (0)
#include "debug.h"
#include "thread.h"
static int _msg_receive(msg_t *m, int block);
static int _msg_send(msg_t *m, kernel_pid_t target_pid, bool block, unsigned state);

View File

@ -26,9 +26,7 @@
#include "mutex.h"
#include "thread.h"
#include "sched.h"
#include "thread.h"
#include "irq.h"
#include "thread.h"
#include "list.h"
#define ENABLE_DEBUG (0)