py/misc.h: Include stdint.h only once (unconditionally at the top).

stmhal-poll-oneshot
Paul Sokolovsky 2015-12-08 02:23:58 +02:00
parent 3a309d93b1
commit 946f870e3c
1 changed files with 0 additions and 1 deletions

View File

@ -107,7 +107,6 @@ size_t m_get_peak_bytes_allocated(void);
/** unichar / UTF-8 *********************************************/
#if MICROPY_PY_BUILTINS_STR_UNICODE
#include <stdint.h> // only include if we need it
// with unicode enabled we need a type which can fit chars up to 0x10ffff
typedef uint32_t unichar;
#else