Skip to content

Commit d28b294

Browse files
committed
Addition of 'o' specifier to make c89
1 parent 6814f75 commit d28b294

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ c89:
171171
-e 's/INT64_MAX/(mp_i64)(((mp_u64)1<<63)-1)/g' \
172172
-e 's/INT64_MIN/(mp_i64)((mp_u64)1<<63)/g' \
173173
-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' \
175175
-e 's/uint\([0-9][0-9]*\)_t/mp_u\1/g' \
176176
-e 's/int\([0-9][0-9]*\)_t/mp_i\1/g' \
177177
-e 's/__func__/MP_FUNCTION_NAME/g' \
@@ -195,7 +195,7 @@ c99:
195195
-e 's/(mp_i64)((mp_u64)1<<63)/INT64_MIN/g' \
196196
-e 's/(mp_i64)(((mp_u64)1<<63)-1)/INT64_MAX/g' \
197197
-e 's/((size_t)-1)/SIZE_MAX/g' \
198-
-e 's/MP_\(PRI[iux]64\)/\1/g' \
198+
-e 's/MP_\(PRI[iuox]64\)/\1/g' \
199199
-e 's/mp_u\([0-9][0-9]*\)/uint\1_t/g' \
200200
-e 's/mp_i\([0-9][0-9]*\)/int\1_t/g' \
201201
-e 's/MP_FUNCTION_NAME/__func__/g' \

0 commit comments

Comments
 (0)