Sources Bugzilla – Bug 4719
should define _IOT__IOTBASE_unsigned and _IOT__IOTBASE_size_t
Last modified: 2007-12-16 03:00:12 UTC
Some applications use unsigned and size_t in ioctls, so bits/ioctls.h should define _IOT__IOTBASE_unsigned and _IOT__IOTBASE_size_t.
Created attachment 1909 [details] Add definitions of _IOT__IOTBASE_unsigned and _IOT__IOTBASE_size_t
Fixed in HEAD.
Oops, sorry, this didn't get commited
Created attachment 2137 [details] Support unsigned char/short/int/long Instead of supporting just "unsigned", we should support unsigned char/short/int/long, which this patch does by just dropping signedness qualifiers, which we don't need to encode. Also, support ssize_t in addition to size_t.