tools: Restore export.h
authorSasha Levin <sasha.levin@oracle.com>
Tue, 25 Aug 2015 05:19:43 +0000 (01:19 -0400)
committerIngo Molnar <mingo@kernel.org>
Tue, 25 Aug 2015 07:44:22 +0000 (09:44 +0200)
Commit 3f735377b ("tools: Copy lib/rbtree.c to tools/lib/") has
removed export.h, which was still in use by liblockdep. Restore
it.

Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1440479985-6696-1-git-send-email-sasha.levin@oracle.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
tools/include/linux/export.h [new file with mode: 0644]

diff --git a/tools/include/linux/export.h b/tools/include/linux/export.h
new file mode 100644 (file)
index 0000000..d07e586
--- /dev/null
@@ -0,0 +1,10 @@
+#ifndef _TOOLS_LINUX_EXPORT_H_
+#define _TOOLS_LINUX_EXPORT_H_
+
+#define EXPORT_SYMBOL(sym)
+#define EXPORT_SYMBOL_GPL(sym)
+#define EXPORT_SYMBOL_GPL_FUTURE(sym)
+#define EXPORT_UNUSED_SYMBOL(sym)
+#define EXPORT_UNUSED_SYMBOL_GPL(sym)
+
+#endif