19 lines
255 B
C
19 lines
255 B
C
|
/* sys/ioctl.h: IO device control. */
|
||
|
|
||
|
#ifndef _SYS_IOCTL_H
|
||
|
#define _SYS_IOCTL_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
/* Perform an IO control operation on a device. */
|
||
|
int ioctl(int fd, int request, ...);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|