umount: getopt return value is int, not char
[minix.git] / include / sys / ioc_disk.h
blobaa2085d5749f2e102f07dbe2f2937bd42aac2691
1 /* sys/ioc_disk.h - Disk ioctl() command codes. Author: Kees J. Bot
2 * 23 Nov 2002
4 */
6 #ifndef _S_I_DISK_H
7 #define _S_I_DISK_H
9 #include <minix/ioctl.h>
11 #define DIOCSETP _IOW('d', 3, struct partition)
12 #define DIOCGETP _IOR('d', 4, struct partition)
13 #define DIOCEJECT _IO ('d', 5)
14 #define DIOCTIMEOUT _IORW('d', 6, int)
15 #define DIOCOPENCT _IOR('d', 7, int)
16 #define DIOCFLUSH _IO ('d', 8)
17 #define DIOCSETWC _IOW('d', 9, int)
18 #define DIOCGETWC _IOR('d', 10, int)
20 #endif /* _S_I_DISK_H */