We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a39d1bd commit dad7311Copy full SHA for dad7311
cores/esp32/stdlib_noniso.c
@@ -49,7 +49,7 @@ char *ltoa(long value, char *result, int base) {
49
}
50
51
char *out = result;
52
- long quotient = abs(value);
+ long quotient = labs(value);
53
54
do {
55
const long tmp = quotient / base;
0 commit comments