mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-23 10:15:57 +01:00
9 lines
103 B
C
9 lines
103 B
C
#ifndef IOCTL_H
|
|
#define IOCTL_H
|
|
|
|
#include <linux/ioctl.h>
|
|
|
|
#define IOCTL0 _IOW(123, 0, char *)
|
|
|
|
#endif
|