fix FIOQSIZE in arm ioctl.h

arm ioctl.h is the same as the generic one except this macro,
so a workaround solution is used to avoid another ioctl.h copy.
This commit is contained in:
Szabolcs Nagy 2016-07-03 17:07:30 +02:00 committed by Rich Felker
parent 6fce6ca129
commit cd208b0037
3 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,2 @@
#undef FIOQSIZE
#define FIOQSIZE 0x545e

View File

@ -200,3 +200,5 @@ struct winsize {
#define SIOCDEVPRIVATE 0x89F0 #define SIOCDEVPRIVATE 0x89F0
#define SIOCPROTOPRIVATE 0x89E0 #define SIOCPROTOPRIVATE 0x89E0
#include <bits/ioctl_fix.h>

View File