Skip to content

Commit

Permalink
Update term.c to correct build error
Browse files Browse the repository at this point in the history
  • Loading branch information
mcuee authored Nov 1, 2023
1 parent a79daf7 commit 1ecc5e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/term.c
Original file line number Diff line number Diff line change
Expand Up @@ -2089,7 +2089,7 @@ static int term_running;

// Any character in standard input available (without sleeping)?
static int readytoread() {
#ifdef _MSC_VER || MINGW
#if defined(_MSC_VER) || defined(MINGW)
return rl_input_available();
#elif defined(WIN32)
HANDLE hStdin = GetStdHandle(STD_INPUT_HANDLE);
Expand Down

0 comments on commit 1ecc5e3

Please sign in to comment.