diff options
Diffstat (limited to 'misc/sys/ioctl.h')
-rw-r--r-- | misc/sys/ioctl.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/misc/sys/ioctl.h b/misc/sys/ioctl.h index 4e940bd29f..644ac5b02f 100644 --- a/misc/sys/ioctl.h +++ b/misc/sys/ioctl.h @@ -17,23 +17,23 @@ Boston, MA 02111-1307, USA. */ #ifndef _SYS_IOCTL_H - #define _SYS_IOCTL_H 1 + #include <features.h> __BEGIN_DECLS /* Get the list of `ioctl' requests and related constants. */ -#include <ioctls.h> +#include <bits/ioctls.h> /* Define some types used by `ioctl' requests. */ -#include <ioctl-types.h> +#include <bits/ioctl-types.h> -/* On a Unix system, the system <sys/ioctl.h> probably defines some of the - symbols we define in <sys/ttydefaults.h> (usually with the same values). - The code to generate <ioctls.h> has omitted these symbols to avoid the - conflict, but a Unix program expects <sys/ioctl.h> to define them, so we - must include <sys/ttydefaults.h> here. */ +/* On a Unix system, the system <sys/ioctl.h> probably defines some of + the symbols we define in <sys/ttydefaults.h> (usually with the same + values). The code to generate <bits/ioctls.h> has omitted these + symbols to avoid the conflict, but a Unix program expects <sys/ioctl.h> + to define them, so we must include <sys/ttydefaults.h> here. */ #include <sys/ttydefaults.h> /* Perform the I/O control operation specified by REQUEST on FD. |