From: Adrian Bunk Date: Wed, 6 Feb 2008 09:36:49 +0000 (-0800) Subject: fs/eventfd.c should #include X-Git-Tag: v2.6.25-rc1~740 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7747cdb2f8302c2e1121f6d604b62a060fb04603;p=profile%2Fivi%2Fkernel-x86-ivi.git fs/eventfd.c should #include Every file should include the headers containing the prototypes for its global functions (in this case sys_eventfd()). Signed-off-by: Adrian Bunk Cc: Davide Libenzi Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/eventfd.c b/fs/eventfd.c index 2ce19c0..a9f130c 100644 --- a/fs/eventfd.c +++ b/fs/eventfd.c @@ -15,6 +15,7 @@ #include #include #include +#include struct eventfd_ctx { wait_queue_head_t wqh;