Luna/libc/include/sys/ioctl.h
apio 4f6e020196
All checks were successful
continuous-integration/drone/push Build is passing
kernel+libc: Add framebuffer ioctls
2023-04-21 18:25:53 +02:00

21 lines
285 B
C

/* sys/ioctl.h: IO device control. */
#ifndef _SYS_IOCTL_H
#define _SYS_IOCTL_H
#include <bits/ioctl-defs.h>
#ifdef __cplusplus
extern "C"
{
#endif
/* Perform an IO control operation on a device. */
int ioctl(int fd, int request, ...);
#ifdef __cplusplus
}
#endif
#endif