mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-28 06:35:34 +07:00
15 lines
207 B
C
15 lines
207 B
C
/*
|
|
* sys/ioctl.h
|
|
*/
|
|
|
|
#ifndef _SYS_IOCTL_H
|
|
#define _SYS_IOCTL_H
|
|
|
|
#include <klibc/extern.h>
|
|
#include <linux/ioctl.h>
|
|
#include <asm/ioctls.h>
|
|
|
|
__extern int ioctl(int, int, void *);
|
|
|
|
#endif /* _SYS_IOCTL_H */
|