1
0
Bifurcation 0

print: Add '\r' whenever '\n' appears for actual serial consoles

Cette révision appartient à :
Aaron Lindsay 2012-09-29 23:24:55 -04:00
Parent ba10785eb9
révision 375ef2eddf
1 fichiers modifiés avec 2 ajouts et 0 suppressions

Voir le fichier

@ -122,6 +122,8 @@ int print(char *fmt, ...) {
}
} else {
putc(*c);
if (*c == '\n')
putc('\r');
}
}
va_end(arg);