From ad18c1ecc367c55e4d10acb05790be2c946053e2 Mon Sep 17 00:00:00 2001 From: Ingo Molnar Date: Tue, 20 Feb 2007 10:19:41 +0100 Subject: [PATCH] fio: syslet.h build fix update syslet.h to build fine even if __user is not defined. Signed-off-by: Ingo Molnar --- syslet.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/syslet.h b/syslet.h index 85f0ebc6..d89abd44 100644 --- a/syslet.h +++ b/syslet.h @@ -10,6 +10,10 @@ * User-space API/ABI definitions: */ +#ifndef __user +# define __user +#endif + /* * This is the 'Syslet Atom' - the basic unit of execution * within the syslet framework. A syslet always represents -- 2.25.1