diff options
| author | Jakob Kaivo <jkk@ung.org> | 2024-01-30 16:07:40 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2024-01-30 16:07:40 -0500 |
| commit | 86b8bdb806e3095558021435390fa45b6ddde399 (patch) | |
| tree | 9d9440678f79c1a6ade9d197c17d836a8a49ce5f /src/termios/tcgetattr.c | |
| parent | 2e962793b28baca1dc9980d91b7d9791b2aaa198 (diff) | |
cleanup
Diffstat (limited to 'src/termios/tcgetattr.c')
| -rw-r--r-- | src/termios/tcgetattr.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/termios/tcgetattr.c b/src/termios/tcgetattr.c deleted file mode 100644 index 364dc9f7..00000000 --- a/src/termios/tcgetattr.c +++ /dev/null @@ -1,21 +0,0 @@ -#if 0 - -#include <termios.h> -#include "_termios.h" - -int tcgetattr(int fildes, struct termios *termios_p) -{ - int ret = -1; - struct kernel_termios kt; - utok(kt, *termios_p); - ret = ioctl(fildes, TCGETS, &kt); - ktou(*termios_p, kt); - return ret; -} - -/* -POSIX(1) -*/ - - -#endif |
