diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 20:20:10 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 23:38:03 +0530 |
commit | bd247b348aaa9f28a53a64df06c69d6f40ff2280 (patch) | |
tree | d5512a378b2a09ee17e3655e3c637ec02ce0b412 /include/linux | |
parent | 4c866d444078d931579c50c9ce3133709390287b (diff) |
headers_check fix: linux/aio_abi.h
fix the following 'make headers_check' warning:
usr/include/linux/aio_abi.h:58: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/aio_abi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/aio_abi.h b/include/linux/aio_abi.h index 9e017293131..2c873166418 100644 --- a/include/linux/aio_abi.h +++ b/include/linux/aio_abi.h @@ -27,6 +27,7 @@ #ifndef __LINUX__AIO_ABI_H #define __LINUX__AIO_ABI_H +#include <linux/types.h> #include <asm/byteorder.h> typedef unsigned long aio_context_t; |