Luna/libc/include/sys/ioctl.h

19 lines
255 B
C
Raw Normal View History

2023-04-09 09:24:13 +00:00
/* 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