summaryrefslogtreecommitdiff
path: root/PACE/pace/win32/termios.inl
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/pace/win32/termios.inl')
-rw-r--r--PACE/pace/win32/termios.inl88
1 files changed, 0 insertions, 88 deletions
diff --git a/PACE/pace/win32/termios.inl b/PACE/pace/win32/termios.inl
deleted file mode 100644
index 99c9e67223c..00000000000
--- a/PACE/pace/win32/termios.inl
+++ /dev/null
@@ -1,88 +0,0 @@
-/* $Id$ -*- C -*-
-
- * =============================================================================
- *
- * = LIBRARY
- * pace
- *
- * = FILENAME
- * pace/win32/termios.inl
- *
- * = AUTHOR
- * Luther Baker
- *
- * ============================================================================= */
-
-#include "pace/unistd.h"
-#include <termios.h>
-PACE_INLINE
-speed_t
-pace_cfgetospeed (const struct termios *termiosp)
-{
- return cfgetospeed (termiosp);
-}
-
-PACE_INLINE
-int
-pace_cfsetospeed (struct termios *termios_p, pace_speed_t speed)
-{
- return cfsetospeed (termios_p, speed);
-}
-
-PACE_INLINE
-speed_t
-pace_cfgetispeed (const struct termios *termios_p)
-{
- return cfgetispeed (termios_p);
-}
-
-PACE_INLINE
-int
-pace_cfsetispeed (struct termios *termios_p, pace_speed_t speed)
-{
- return cfsetispeed (termios_p, speed);
-}
-
-PACE_INLINE
-int
-pace_tcdrain (int fildes)
-{
- return tcdrain (fildes);
-}
-
-PACE_INLINE
-int
-pace_tcgetattr (int fildes, struct termios *termios_p)
-{
- return tcgetattr (fildes, termios_p);
-}
-
-PACE_INLINE
-int
-pace_tcflow (int fildes, int action)
-{
- return tcflow (fildes, action);
-}
-
-PACE_INLINE
-int
-pace_tcflush (int fildes, int queue_selector)
-{
- return tcflush (fildes, queue_selector);
-}
-
-PACE_INLINE
-int
-pace_tcsendbreak (int fildes, int duration)
-{
- return tcsendbreak (fildes, duration);
-}
-
-PACE_INLINE
-int
-pace_tcsetattr (int fildes,
- int optional_actions,
- const struct termios *termios_p)
-{
- return tcsetattr (fildes, optional_actions, termios_p);
-}