diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 21:42:47 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 23:57:43 +0530 |
commit | 2df005b75ab910f789f099f81bb70b3aa37203a7 (patch) | |
tree | 983652d62968c4cbe0c74d534e82adb33c4ea37b | |
parent | de8b0bcafabfb4400aa028282293ce7d52307433 (diff) | |
download | linux-3.10-2df005b75ab910f789f099f81bb70b3aa37203a7.tar.gz linux-3.10-2df005b75ab910f789f099f81bb70b3aa37203a7.tar.bz2 linux-3.10-2df005b75ab910f789f099f81bb70b3aa37203a7.zip |
headers_check fix: linux/inet_diag.h
fix the following 'make headers_check' warning:
usr/include/linux/inet_diag.h:16: found __[us]{8,16,32,64} type without #include <linux/types.h>
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
-rw-r--r-- | include/linux/inet_diag.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/inet_diag.h b/include/linux/inet_diag.h index 6e8bc548635..bc8c4902208 100644 --- a/include/linux/inet_diag.h +++ b/include/linux/inet_diag.h @@ -1,6 +1,8 @@ #ifndef _INET_DIAG_H_ #define _INET_DIAG_H_ 1 +#include <linux/types.h> + /* Just some random number */ #define TCPDIAG_GETSOCK 18 #define DCCPDIAG_GETSOCK 19 |