2023-04-09 09:24:13 +00:00
|
|
|
/* sys/ioctl.h: IO device control. */
|
|
|
|
|
|
|
|
#ifndef _SYS_IOCTL_H
|
|
|
|
#define _SYS_IOCTL_H
|
|
|
|
|
2023-04-21 16:25:53 +00:00
|
|
|
#include <bits/ioctl-defs.h>
|
|
|
|
|
2023-04-09 09:24:13 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Perform an IO control operation on a device. */
|
|
|
|
int ioctl(int fd, int request, ...);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|