Defragster 9 vuotta sitten
vanhempi
commit
9d0e0143bd
1 muutettua tiedostoa jossa 9 lisäystä ja 0 poistoa
  1. +9
    -0
      teensy3/nonstd.c

+ 9
- 0
teensy3/nonstd.c Näytä tiedosto

@@ -94,6 +94,15 @@ char * dtostrf(float val, int width, unsigned int precision, char *buf)
*p++ = '0';
*p++ = '.';
}
else if (decpt < 0 && precision > 0) {
*p++ = '0';
*p++ = '.';
e++;
while ( decpt < 0 ) {
decpt++;
*p++ = '0';
}
}
while (p < e) {
*p++ = *s++;
if (p == e) break;

Loading…
Peruuta
Tallenna