1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

core/*: ENABLE_DEBUG not needed for inttypes.h

This commit is contained in:
Bas Stottelaar 2020-10-23 14:37:01 +02:00
parent 28ae0c97cd
commit cc2e6b08d1

View File

@ -20,6 +20,7 @@
*/
#include <stdint.h>
#include <inttypes.h>
#include "sched.h"
#include "clist.h"
@ -35,11 +36,6 @@
#define ENABLE_DEBUG 0
#include "debug.h"
#if ENABLE_DEBUG
/* For PRIu16 etc. */
#include <inttypes.h>
#endif
#ifdef PICOLIBC_TLS
#include <picotls.h>
#endif