LibC: Don't crash when calling tcflush()

This commit is contained in:
Bananymous 2024-08-09 17:03:21 +03:00
parent 6cda639869
commit a12bfe4639
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ int tcflow(int, int);
int tcflush(int fd, int queue_selector)
{
dwarnln("FIXME: tcflush({}, {})", fd, queue_selector);
ASSERT_NOT_REACHED();
return 0;
}
int tcgetattr(int fildes, struct termios* termios)