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

drivers/*: reorder ENABLE_DEBUG after last include

This commit is contained in:
Bas Stottelaar 2020-10-22 01:13:47 +02:00
parent bd34cf8fc0
commit 8d602435a5

View File

@ -21,14 +21,15 @@
#include <errno.h>
#include <string.h>
#define ENABLE_DEBUG (0)
#include "debug.h"
#include "assert.h"
#include "xtimer.h"
#include "at24cxxx_defines.h"
#include "at24cxxx.h"
#define ENABLE_DEBUG 0
#include "debug.h"
#ifndef MIN
#define MIN(a, b) ((a) > (b) ? (b) : (a))
#endif