diff options
author | Damien George <damien@micropython.org> | 2025-10-02 11:01:37 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2025-10-02 22:44:59 +1000 |
commit | bb205f093191c0a4d1b1835f3442dbda40e8eab8 (patch) | |
tree | 5072b082f1b1a360d681c1a33531ade5a0e8e5e4 | |
parent | 75fb1addade14a223056d9c233369c29bf098d8d (diff) |
qemu/mpconfigport: Remove definitions of _FMT macros.
Let the defaults in `py/mpconfig.h` be used instead.
Signed-off-by: Damien George <damien@micropython.org>
-rw-r--r-- | ports/qemu/mpconfigport.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ports/qemu/mpconfigport.h b/ports/qemu/mpconfigport.h index 3d2466a91..65c83a5fe 100644 --- a/ports/qemu/mpconfigport.h +++ b/ports/qemu/mpconfigport.h @@ -78,10 +78,6 @@ typedef int32_t mp_int_t; // must be pointer size typedef uint32_t mp_uint_t; // must be pointer size #endif -#define UINT_FMT "%lu" -#define INT_FMT "%ld" -#define HEX_FMT "%lx" - typedef long mp_off_t; // We need to provide a declaration/definition of alloca() |