diff options
author | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-30 22:21:19 +0530 |
---|---|---|
committer | Jaswinder Singh Rajput <jaswinderrajput@gmail.com> | 2009-01-31 00:08:18 +0530 |
commit | 448314fc968252b0b95f74bbe63fdcaf41e6413d (patch) | |
tree | 475639e76154dec737cbbfdf159bfb8f3a2da174 /include/linux | |
parent | 6b6bcd0ed953ae0ed73af4759788fb8384bbaeed (diff) | |
download | op-kernel-dev-448314fc968252b0b95f74bbe63fdcaf41e6413d.zip op-kernel-dev-448314fc968252b0b95f74bbe63fdcaf41e6413d.tar.gz |
headers_check fix: linux/taskstats.h
fix the following 'make headers_check' warning:
usr/include/linux/taskstats.h:44: 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/taskstats.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/taskstats.h b/include/linux/taskstats.h index 18269e9..341dddb 100644 --- a/include/linux/taskstats.h +++ b/include/linux/taskstats.h @@ -16,6 +16,8 @@ #ifndef _LINUX_TASKSTATS_H #define _LINUX_TASKSTATS_H +#include <linux/types.h> + /* Format for per-task data returned to userland when * - a task exits * - listener requests stats for a task |