search for: 559f111

Displaying 1 result from an estimated 1 matches for "559f111".

2011 Aug 08
0
[PATCH] include: [sys/ioctl.h] needs linux/sockios.h
...KUMAAN <9maaan at gmail.com> Cc: Ben Hutchings <ben at decadent.org.uk> Signed-off-by: maximilian attems <max at stro.at> --- usr/include/sys/ioctl.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/usr/include/sys/ioctl.h b/usr/include/sys/ioctl.h index 559f111..81ae756 100644 --- a/usr/include/sys/ioctl.h +++ b/usr/include/sys/ioctl.h @@ -9,6 +9,9 @@ #include <linux/ioctl.h> #include <asm/ioctls.h> +/* the SIOCxxx I/O are hidden */ +#include <linux/sockios.h> + __extern int ioctl(int, int, void *); #endif /* _SYS_IOCTL_H */ -...