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

core: include inttypes.h in sched.h

sched.h now defines PRIkernel_pid to PRIi16, which in turn is defined in
inttypes.h.
This commit is contained in:
Kaspar Schleiser 2020-11-20 12:21:19 +01:00
parent 3a643246c8
commit 7fa8b69912

View File

@ -81,6 +81,8 @@
#define SCHED_H
#include <stddef.h>
#include <inttypes.h>
#include "kernel_defines.h"
#include "native_sched.h"
#include "clist.h"