musl-tcc/src/termios/tcgetattr.c

10 lines
145 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <termios.h>
#include <sys/ioctl.h>
int tcgetattr(int fd, struct termios *tio)
{
if (ioctl(fd, TCGETS, tio))
return -1;
return 0;
}