summaryrefslogtreecommitdiff
path: root/userland/libc/include/sys/ioctl.h
blob: a373a4bd5f4803ec5f6a5300bc23a67ad4418199 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef IOCTL_H
#define IOCTL_H
#define TIOCGWINSZ 0
struct winsize {
  unsigned short ws_row;
  unsigned short ws_col;
  unsigned short ws_xpixel;
  unsigned short ws_ypixel;
};
#endif // IOCTL_H