circuitpy_mpconfig.h: Move includes after include-guard

To benefit from gcc's "once-only headers" implementation, the
"wrapper-#ifndef" must be the first non-comment part of the file,
according to the manual for various gcc/cpp versions.
This commit is contained in:
Jeff Epler 2019-11-16 15:22:20 -06:00
parent 9000c88965
commit acde22a436

View File

@ -28,11 +28,11 @@
// sure that the same feature set and settings are used, such as in atmel-samd
// and nrf.
#include <stdint.h>
#ifndef __INCLUDED_MPCONFIG_CIRCUITPY_H
#define __INCLUDED_MPCONFIG_CIRCUITPY_H
#include <stdint.h>
// This is CircuitPython.
#define CIRCUITPY 1