Cleanup stdout flushing

Flushing is not needed since we disabled buffering of stdout.
This commit is contained in:
Martin Lund 2022-06-22 01:03:46 +02:00
parent 4c611e6767
commit a0f3f9d9b7
4 changed files with 1 additions and 11 deletions

View file

@ -30,14 +30,11 @@ char ansi_format[30];
void print_hex(char c)
{
printf("%02x ", (unsigned char) c);
fflush(stdout);
}
void print_normal(char c)
{
putchar(c);
fflush(stdout);
}
void print_init_ansi_formatting()