Skip to content

Commit

Permalink
stopped in the middle
Browse files Browse the repository at this point in the history
  • Loading branch information
czurnieden committed Jun 20, 2023
1 parent 6febdbd commit 397849c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 0 additions & 6 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -197,15 +197,9 @@ c99:
-e 's/(mp_i64)((mp_u64)1<<63)/INT64_MIN/g' \
-e 's/(mp_i64)(((mp_u64)1<<63)-1)/INT64_MAX/g' \
-e 's/((size_t)-1)/SIZE_MAX/g' \
<<<<<<< HEAD
-e 's/MP_\(PRI[ioux]64\)/\1/g' \
||||||| constructed merge base
-e 's/MP_\(PRI[iux]64\)/\1/g' \
=======
-e 's/__intmax_t/intmax_t/g' \
-e 's/__uintmax_t/uintmax_t/g' \
-e 's/MP_\(PRI[iuox]64\)/\1/g' \
>>>>>>> Extended c89 handling
-e 's/mp_u\([0-9][0-9]*\)/uint\1_t/g' \
-e 's/mp_i\([0-9][0-9]*\)/int\1_t/g' \
-e 's/MP_FUNCTION_NAME/__func__/g' \
Expand Down
2 changes: 1 addition & 1 deletion s_mp_fprintf.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

/* Step to the next character, throw error if there is none */
#define LTM_NEXT_ERROR(x) do{(x)++;if(*(x) == '\0'){goto LTM_ERR;}}while(0)
/* Step to the next character, got to end if there is none */
/* Step to the next character, go to end if there is none */
#define LTM_NEXT(x) do{(x)++;if(*(x) == '\0')break;}while(0)

/* The size of the string "%..." is not very large */
Expand Down

0 comments on commit 397849c

Please sign in to comment.