Don't need that

This commit is contained in:
XANTRONIX Development 2023-09-11 09:50:02 -04:00
parent 3baed68df4
commit 6889323630

4
main.c
View file

@ -67,10 +67,6 @@ static inline int zx_putchar(uint8_t c) {
uint8_t sequence[4];
size_t len = utf8_encode(sequence, zx_charset[c]);
if (c > 63) {
fprintf(stderr, "What the fuck? Got c %02x\n", c);
}
if (fwrite(sequence, len, 1, stdout) < 1) {
goto error_io;
}