diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 21:49:07 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 23:59:44 +0530 |
commit | d6d20f54847e27ed886e8285c208368ef3d42abb (patch) | |
tree | 11913a475271774211920432cb6a8645a2124daf /include/linux/ipx.h | |
parent | e5144de521417b0f0eea74ece89acd437ecd32c9 (diff) | |
download | linux-3.10-d6d20f54847e27ed886e8285c208368ef3d42abb.tar.gz linux-3.10-d6d20f54847e27ed886e8285c208368ef3d42abb.tar.bz2 linux-3.10-d6d20f54847e27ed886e8285c208368ef3d42abb.zip |
headers_check fix: linux/ipx.h
fix the following 'make headers_check' warning:
usr/include/linux/ipx.h:13: 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/ipx.h')
-rw-r--r-- | include/linux/ipx.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/ipx.h b/include/linux/ipx.h index eb19b4ea84f..aabb1d29402 100644 --- a/include/linux/ipx.h +++ b/include/linux/ipx.h @@ -1,5 +1,6 @@ #ifndef _IPX_H_ #define _IPX_H_ +#include <linux/types.h> #include <linux/sockios.h> #include <linux/socket.h> #define IPX_NODE_LEN 6 |