From acf36c417fc6d2c403e32b9cf1f2753f7266f408 Mon Sep 17 00:00:00 2001 From: Carl-Daniel Hailfinger Date: Wed, 28 Nov 2007 22:51:31 +0000 Subject: [PATCH] Fix SHARED macros in the non-_MAINOBJECT case. The patch I sent earlier (which was committed) was unfortunately generated from the wrong tree. Signed-off-by: Carl-Daniel Hailfinger Acked-by: Ronald G. Minnich git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@531 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- include/shared.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/shared.h b/include/shared.h index d7a3ec6541..dce8f7fcc0 100644 --- a/include/shared.h +++ b/include/shared.h @@ -43,7 +43,7 @@ ret (*func)(args) attr= stage0_##func #else #define EXTERN(func, ret, attr, args...) \ - ret *func(args) attr + extern ret (*func)(args) attr #endif #else