File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -197,15 +197,9 @@ c99:
197
197
-e 's/(mp_i64)((mp_u64)1<<63)/INT64_MIN/g' \
198
198
-e 's/(mp_i64)(((mp_u64)1<<63)-1)/INT64_MAX/g' \
199
199
-e 's/((size_t)-1)/SIZE_MAX/g' \
200
- <<<<<<< HEAD
201
- -e 's/MP_\(PRI[ioux]64\)/\1/g' \
202
- ||||||| constructed merge base
203
- -e 's/MP_\(PRI[iux]64\)/\1/g' \
204
- ====== =
205
200
-e 's/__intmax_t/intmax_t/g' \
206
201
-e 's/__uintmax_t/uintmax_t/g' \
207
202
-e 's/MP_\(PRI[iuox]64\)/\1/g' \
208
- >>>>>>> Extended c89 handling
209
203
-e 's/mp_u\([0-9][0-9]*\)/uint\1_t/g' \
210
204
-e 's/mp_i\([0-9][0-9]*\)/int\1_t/g' \
211
205
-e 's/MP_FUNCTION_NAME/__func__/g' \
Original file line number Diff line number Diff line change 18
18
19
19
/* Step to the next character, throw error if there is none */
20
20
#define LTM_NEXT_ERROR (x ) do{(x)++;if(*(x) == '\0'){goto LTM_ERR;}}while(0)
21
- /* Step to the next character, got to end if there is none */
21
+ /* Step to the next character, go to end if there is none */
22
22
#define LTM_NEXT (x ) do{(x)++;if(*(x) == '\0')break;}while(0)
23
23
24
24
/* The size of the string "%..." is not very large */
You can’t perform that action at this time.
0 commit comments