sabotage-linux / kernel-headers

linux kernel headers (sanitized for use with musl)
94 stars 24 forks source link

linux/input.h #1

Closed justincormack closed 11 years ago

justincormack commented 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>

justincormack commented 11 years ago

Yes, it does need <linux/time.h> but ioctl and types seem unnecessary.