mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 17:06:39 +09: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 */
|