It defines types used by all other headers. Fixes #691.
@ -28,8 +28,8 @@
#include <assert.h>
#include <string.h>
#include "misc.h"
#include "mpconfig.h"
#include "asmthumb.h"
// wrapper around everything in this file
@ -29,8 +29,8 @@
#if MICROPY_EMIT_X64
#include "qstr.h"
#include "obj.h"
#include "binary.h"
@ -26,8 +26,8 @@
#include <stdlib.h>
#include "builtin.h"
@ -31,8 +31,8 @@
#include <math.h>
#include "lexer.h"
#include "parse.h"
@ -30,8 +30,8 @@
#include <stdint.h>
#include "runtime0.h"
#include <stdarg.h>
@ -48,8 +48,8 @@
@ -33,7 +33,6 @@
#include "gc.h"
#include "runtime.h"
@ -32,8 +32,8 @@
#include <stdio.h>
@ -24,8 +24,8 @@
* THE SOFTWARE.
*/
#if MICROPY_HELPER_LEXER_UNIX
#if 0 // print debugging info
#define DEBUG_printf DEBUG_printf
@ -27,8 +27,8 @@
#include "mpz.h"
#if MICROPY_LONGINT_IMPL == MICROPY_LONGINT_IMPL_MPZ
#include "parsenumbase.h"
#include <stdbool.h>
#include "nlr.h"
// find real radix base, and strip preceding '0x', '0o' and '0b'
// NOTE: we are using linear arrays to store and search for qstr's (unique strings, interned strings)
#include "repl.h"
#if MICROPY_HELPER_REPL
#include "smallint.h"
// attribute flags
#define FL_PRINT (0x01)
// returned value is always at least 1 greater than argument
#define ROUND_ALLOC(a) (((a) & ((~0) - 7)) + 8)