diff options
| author | Jakob Kaivo <jkk@ung.org> | 2023-11-14 12:12:10 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2023-11-14 12:12:10 -0500 |
| commit | 920746cbb5d18d8aef284d3fe71a57cd52509117 (patch) | |
| tree | 11b4436a58c077f36b1236f0c702af00c763e3f6 /src/termios | |
| parent | f23336fbc3148105c42eebfa44a22d1164828108 (diff) | |
disable all functions; will strategically reenable them as tested
Diffstat (limited to 'src/termios')
| -rw-r--r-- | src/termios/cfgetispeed.c | 5 | ||||
| -rw-r--r-- | src/termios/cfgetospeed.c | 5 | ||||
| -rw-r--r-- | src/termios/cfsetispeed.c | 5 | ||||
| -rw-r--r-- | src/termios/cfsetospeed.c | 5 | ||||
| -rw-r--r-- | src/termios/tcdrain.c | 5 | ||||
| -rw-r--r-- | src/termios/tcflow.c | 5 | ||||
| -rw-r--r-- | src/termios/tcflush.c | 5 | ||||
| -rw-r--r-- | src/termios/tcgetattr.c | 5 | ||||
| -rw-r--r-- | src/termios/tcgetsid.c | 5 | ||||
| -rw-r--r-- | src/termios/tcsendbreak.c | 5 | ||||
| -rw-r--r-- | src/termios/tcsetattr.c | 5 |
11 files changed, 55 insertions, 0 deletions
diff --git a/src/termios/cfgetispeed.c b/src/termios/cfgetispeed.c index dba550ef..6d2e0a3d 100644 --- a/src/termios/cfgetispeed.c +++ b/src/termios/cfgetispeed.c @@ -1,3 +1,5 @@ +#if 0 + #include <termios.h> #include "_assert.h" @@ -9,3 +11,6 @@ speed_t cfgetispeed(const struct termios *termios_p) /* POSIX(1) */ + + +#endif diff --git a/src/termios/cfgetospeed.c b/src/termios/cfgetospeed.c index f4a9e3e3..5286235c 100644 --- a/src/termios/cfgetospeed.c +++ b/src/termios/cfgetospeed.c @@ -1,3 +1,5 @@ +#if 0 + #include <termios.h> #include "_assert.h" @@ -9,3 +11,6 @@ speed_t cfgetospeed(const struct termios *termios_p) /* POSIX(1) */ + + +#endif diff --git a/src/termios/cfsetispeed.c b/src/termios/cfsetispeed.c index b13c8423..b3747f84 100644 --- a/src/termios/cfsetispeed.c +++ b/src/termios/cfsetispeed.c @@ -1,3 +1,5 @@ +#if 0 + #include <termios.h> #include <errno.h> #include "_assert.h" @@ -37,3 +39,6 @@ int cfsetispeed(struct termios *termios_p, speed_t speed) /* POSIX(1) */ + + +#endif diff --git a/src/termios/cfsetospeed.c b/src/termios/cfsetospeed.c index edb3f994..3cce4879 100644 --- a/src/termios/cfsetospeed.c +++ b/src/termios/cfsetospeed.c @@ -1,3 +1,5 @@ +#if 0 + #include <termios.h> #include <errno.h> #include "_assert.h" @@ -36,3 +38,6 @@ int cfsetospeed(struct termios *termios_p, speed_t speed) /* POSIX(1) */ + + +#endif diff --git a/src/termios/tcdrain.c b/src/termios/tcdrain.c index 8f117ac1..1a74c30d 100644 --- a/src/termios/tcdrain.c +++ b/src/termios/tcdrain.c @@ -1,3 +1,5 @@ +#if 0 + #include <termios.h> #include "_termios.h" @@ -8,3 +10,6 @@ int tcdrain(int fildes) /* POSIX(1) */ + + +#endif diff --git a/src/termios/tcflow.c b/src/termios/tcflow.c index 41fdcfbc..a14b0f3c 100644 --- a/src/termios/tcflow.c +++ b/src/termios/tcflow.c @@ -1,3 +1,5 @@ +#if 0 + #include <termios.h> #include "_termios.h" @@ -9,3 +11,6 @@ int tcflow(int fildes, int action) /* POSIX(1) */ + + +#endif diff --git a/src/termios/tcflush.c b/src/termios/tcflush.c index 98a89749..94995615 100644 --- a/src/termios/tcflush.c +++ b/src/termios/tcflush.c @@ -1,3 +1,5 @@ +#if 0 + #include <termios.h> #include "_termios.h" @@ -9,3 +11,6 @@ int tcflush(int fildes, int queue_selector) /* POSIX(1) */ + + +#endif diff --git a/src/termios/tcgetattr.c b/src/termios/tcgetattr.c index 0f74be5c..364dc9f7 100644 --- a/src/termios/tcgetattr.c +++ b/src/termios/tcgetattr.c @@ -1,3 +1,5 @@ +#if 0 + #include <termios.h> #include "_termios.h" @@ -14,3 +16,6 @@ int tcgetattr(int fildes, struct termios *termios_p) /* POSIX(1) */ + + +#endif diff --git a/src/termios/tcgetsid.c b/src/termios/tcgetsid.c index 4a202233..54836010 100644 --- a/src/termios/tcgetsid.c +++ b/src/termios/tcgetsid.c @@ -1,3 +1,5 @@ +#if 0 + #include <sys/types.h> #include <termios.h> @@ -14,3 +16,6 @@ pid_t tcgetsid(int fildes) XOPEN(400) POSIX(200809) */ + + +#endif diff --git a/src/termios/tcsendbreak.c b/src/termios/tcsendbreak.c index fab5927e..020208a0 100644 --- a/src/termios/tcsendbreak.c +++ b/src/termios/tcsendbreak.c @@ -1,3 +1,5 @@ +#if 0 + #include <termios.h> #include "_termios.h" @@ -8,3 +10,6 @@ int tcsendbreak(int fildes, int duration) /* POSIX(1) */ + + +#endif diff --git a/src/termios/tcsetattr.c b/src/termios/tcsetattr.c index a40439a2..dcaacc92 100644 --- a/src/termios/tcsetattr.c +++ b/src/termios/tcsetattr.c @@ -1,3 +1,5 @@ +#if 0 + #include <termios.h> #include <errno.h> #include "_termios.h" @@ -32,3 +34,6 @@ int tcsetattr(int fildes, int optional_actions, struct termios *termios_p) /* POSIX(1) */ + + +#endif |
