File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 171
171
-e 's/INT64_MAX/(mp_i64)(((mp_u64)1<<63)-1)/g' \
172
172
-e 's/INT64_MIN/(mp_i64)((mp_u64)1<<63)/g' \
173
173
-e 's/SIZE_MAX/((size_t)-1)/g' \
174
- -e 's/\(PRI[iux ]64\)/MP_\1/g' \
174
+ -e 's/\(PRI[ioux ]64\)/MP_\1/g' \
175
175
-e 's/uint\([0-9][0-9]*\)_t/mp_u\1/g' \
176
176
-e 's/int\([0-9][0-9]*\)_t/mp_i\1/g' \
177
177
-e 's/__func__/MP_FUNCTION_NAME/g' \
195
195
-e 's/(mp_i64)((mp_u64)1<<63)/INT64_MIN/g' \
196
196
-e 's/(mp_i64)(((mp_u64)1<<63)-1)/INT64_MAX/g' \
197
197
-e 's/((size_t)-1)/SIZE_MAX/g' \
198
- -e 's/MP_\(PRI[iux ]64\)/\1/g' \
198
+ -e 's/MP_\(PRI[ioux ]64\)/\1/g' \
199
199
-e 's/mp_u\([0-9][0-9]*\)/uint\1_t/g' \
200
200
-e 's/mp_i\([0-9][0-9]*\)/int\1_t/g' \
201
201
-e 's/MP_FUNCTION_NAME/__func__/g' \
Original file line number Diff line number Diff line change @@ -36,5 +36,6 @@ typedef __UINT64_TYPE__ mp_u64;
36
36
#define MP_PRIi64 MP_PRI64_PREFIX "i"
37
37
#define MP_PRIu64 MP_PRI64_PREFIX "u"
38
38
#define MP_PRIx64 MP_PRI64_PREFIX "x"
39
+ #define MP_PRIo64 MP_PRI64_PREFIX "o"
39
40
40
41
#define MP_FUNCTION_NAME __func__
You can’t perform that action at this time.
0 commit comments