Fix compile error with clang casting long* to int*teensy4-core
p = buf + (sizeof(buf)); | p = buf + (sizeof(buf)); | ||||
do { | do { | ||||
divmod10_v2(n, &n, &digit); | |||||
uint32_t div; | |||||
divmod10_v2(n, &div, &digit); | |||||
n = div; | |||||
//divmod10_asm(n, digit, t1, t2, c3333); | //divmod10_asm(n, digit, t1, t2, c3333); | ||||
*--p = digit + '0'; | *--p = digit + '0'; | ||||
} while (n); | } while (n); |