Skip to content

Commit

Permalink
Not building this code breaks stuff in C-Kermit 5A(190)
Browse files Browse the repository at this point in the history
Perhaps it causes some hidden issue for Kermit 95 as well? Either way we should probably include it whether we're building with IBM C or Open Watcom.
  • Loading branch information
davidrg committed Nov 11, 2024
1 parent 1ef8363 commit bc71a77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kermit/k95/ckotio.c
Original file line number Diff line number Diff line change
Expand Up @@ -2064,10 +2064,10 @@ sysinit() {
}


#ifdef __IBMC__
#ifdef OS2ONLY
setvbuf(stdout, NULL, _IONBF, 0);
setmode(1, _O_TEXT);
#endif /* __IBMC__ */
#endif /* OS2ONLY */

#ifdef NT
{
Expand Down

0 comments on commit bc71a77

Please sign in to comment.