diff options
| author | Robert Norton | 2018-06-25 14:50:38 +0100 |
|---|---|---|
| committer | Robert Norton | 2018-06-25 15:17:42 +0100 |
| commit | ab500ea0cb4a77a9e2661bc8c805feea31827cbc (patch) | |
| tree | 389503bfbbfd4e211cc53438c3ee28255fec1f3d /lib | |
| parent | 7827c89edc4cca59faa735d1cfa460ba7ca54b62 (diff) | |
flush stdout after putchar for terminal emulation purposes.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/sail.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -990,6 +990,7 @@ unit sail_putchar(const sail_int op) { char c = (char) mpz_get_ui(op); putchar(c); + fflush(stdout); return UNIT; } |
