Closed justincormack closed 11 years ago
linux/input.h is broken as it includes userspace headers
#include <sys/time.h> #include <sys/ioctl.h> #include <sys/types.h>
This really breaks stuff, especially including ioctl.h redefining stuff twice.
It doesn't appear to need these, possibly it does need <linux/time.h>
<linux/time.h>
Yes, it does need <linux/time.h> but ioctl and types seem unnecessary.
linux/input.h is broken as it includes userspace headers
This really breaks stuff, especially including ioctl.h redefining stuff twice.
It doesn't appear to need these, possibly it does need
<linux/time.h>