diff options
Diffstat (limited to 'libc/kernel/uapi/linux/random.h')
-rw-r--r-- | libc/kernel/uapi/linux/random.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libc/kernel/uapi/linux/random.h b/libc/kernel/uapi/linux/random.h index c81559ccb..22332d13c 100644 --- a/libc/kernel/uapi/linux/random.h +++ b/libc/kernel/uapi/linux/random.h @@ -22,18 +22,18 @@ #include <linux/ioctl.h> /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #include <linux/irqnr.h> -#define RNDGETENTCNT _IOR( 'R', 0x00, int ) -#define RNDADDTOENTCNT _IOW( 'R', 0x01, int ) -#define RNDGETPOOL _IOR( 'R', 0x02, int [2] ) +#define RNDGETENTCNT _IOR('R', 0x00, int) +#define RNDADDTOENTCNT _IOW('R', 0x01, int) +#define RNDGETPOOL _IOR('R', 0x02, int[2]) /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ -#define RNDADDENTROPY _IOW( 'R', 0x03, int [2] ) -#define RNDZAPENTCNT _IO( 'R', 0x04 ) -#define RNDCLEARPOOL _IO( 'R', 0x06 ) +#define RNDADDENTROPY _IOW('R', 0x03, int[2]) +#define RNDZAPENTCNT _IO('R', 0x04) +#define RNDCLEARPOOL _IO('R', 0x06) struct rand_pool_info { /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ - int entropy_count; - int buf_size; - __u32 buf[0]; + int entropy_count; + int buf_size; + __u32 buf[0]; }; /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ #define GRND_NONBLOCK 0x0001 |