mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-31 16:38:12 +00:00
5dd42c262b
All users have been converted. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
17 lines
318 B
C
17 lines
318 B
C
#ifndef IOCTL32_H
|
|
#define IOCTL32_H 1
|
|
|
|
#include <linux/compiler.h> /* for __deprecated */
|
|
|
|
struct file;
|
|
|
|
typedef int (*ioctl_trans_handler_t)(unsigned int, unsigned int,
|
|
unsigned long, struct file *);
|
|
|
|
struct ioctl_trans {
|
|
unsigned long cmd;
|
|
ioctl_trans_handler_t handler;
|
|
struct ioctl_trans *next;
|
|
};
|
|
|
|
#endif
|