summaryrefslogtreecommitdiff
path: root/src/termios/cfgetospeed.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/termios/cfgetospeed.c')
-rw-r--r--src/termios/cfgetospeed.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/termios/cfgetospeed.c b/src/termios/cfgetospeed.c
deleted file mode 100644
index 5286235c..00000000
--- a/src/termios/cfgetospeed.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#if 0
-
-#include <termios.h>
-#include "_assert.h"
-
-speed_t cfgetospeed(const struct termios *termios_p)
-{
- ASSERT_NONNULL(termios_p);
- return termios_p->c_oflag & B38400;
-}
-/*
-POSIX(1)
-*/
-
-
-#endif