fpurge() is not available on Windows

This commit is contained in:
Frank Denis 2015-06-08 01:10:18 +02:00
parent 46448bdb07
commit 35bf369e5b

View file

@ -30,7 +30,6 @@
static void
disable_echo(void)
{
fpurge(stdin);
fflush(stdout);
fflush(stderr);
@ -41,6 +40,7 @@ disable_echo(void)
if (!isatty(0) || tcgetattr(0, &p) != 0) {
return;
}
fpurge(stdin);
p.c_lflag &= ~ECHO;
tcsetattr(0, TCSAFLUSH, &p);
}
@ -58,7 +58,6 @@ disable_echo(void)
static void
enable_echo(void)
{
fpurge(stdin);
fflush(stdout);
fflush(stderr);
@ -69,6 +68,7 @@ enable_echo(void)
if (!isatty(0) || tcgetattr(0, &p) != 0) {
return;
}
fpurge(stdin);
p.c_lflag |= ECHO;
tcsetattr(0, TCSAFLUSH, &p);
}