ports: Eliminate define of {U,}INT_FMT where redundant.

The default definition in `py/mpconfig.h` for 32-bit architectures is
`%u/%d`, so these can be removed.

Signed-off-by: Jeff Epler <jepler@gmail.com>
This commit is contained in:
Jeff Epler
2025-07-18 06:33:11 -05:00
committed by Damien George
parent 096ff8b9ee
commit 0c8d35b322
12 changed files with 0 additions and 27 deletions

View File

@@ -234,8 +234,6 @@
// Assume that if we already defined the obj repr then we also defined these items
#ifndef MICROPY_OBJ_REPR
#define UINT_FMT "%u"
#define INT_FMT "%d"
typedef int mp_int_t; // must be pointer size
typedef unsigned int mp_uint_t; // must be pointer size
#endif