summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/tcgetattr.c
blob: f35d3944266e99f640a00c0acea761e155d4af57 (plain)
1
2
3
4
5
6
7
#include <termios.h>
#include <sys/ioctl.h>

int tcgetattr(int fildes, struct termios *termios_p)
{
  return ioctl(fildes, TCGETS, termios_p);
}