mescc: Mes C Library: Support GNU Bash: Add struct winsize.

* include/termio.h (struct winsize): New type.
This commit is contained in:
Jan Nieuwenhuizen 2019-01-05 10:25:02 +01:00
parent 8d7de98307
commit 1d8667e993
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 8 additions and 0 deletions

View File

@ -49,6 +49,14 @@
#define CS8 0000060
#define PARENB 0000400
struct winsize
{
unsigned short ws_row;
unsigned short ws_col;
unsigned short ws_xpixel;
unsigned short ws_ypixel;
};
struct termio
{
unsigned short c_iflag;