summaryrefslogtreecommitdiff
path: root/Libraries/LibC/termios.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibC/termios.cpp')
-rw-r--r--Libraries/LibC/termios.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/Libraries/LibC/termios.cpp b/Libraries/LibC/termios.cpp
index e1cf4d15ad..1ccd5cb653 100644
--- a/Libraries/LibC/termios.cpp
+++ b/Libraries/LibC/termios.cpp
@@ -51,10 +51,8 @@ int tcsetattr(int fd, int optional_actions, const struct termios* t)
return -1;
}
-int tcflow(int fd, int action)
+int tcflow([[maybe_unused]] int fd, [[maybe_unused]] int action)
{
- (void)fd;
- (void)action;
ASSERT_NOT_REACHED();
}