diff options
Diffstat (limited to 'libc/sysdeps/linux')
| -rw-r--r-- | libc/sysdeps/linux/powerpc/bits/termios.h | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/powerpc/bits/termios.h b/libc/sysdeps/linux/powerpc/bits/termios.h index 758684824..a1cea1df1 100644 --- a/libc/sysdeps/linux/powerpc/bits/termios.h +++ b/libc/sysdeps/linux/powerpc/bits/termios.h @@ -26,6 +26,13 @@ typedef unsigned int	tcflag_t;  /* note: this is fixed to be the same as the kernel, not glibc */ +struct winsize { +	unsigned short int ws_row; +	unsigned short int ws_col; +	unsigned short int ws_xpixel; +	unsigned short int ws_ypixel; +}; +  #define NCCS 19  struct termios {  	tcflag_t c_iflag;		/* input mode flags */  | 
