multibinary: fix strict-prototype warning

with -Wstric-prototype option , GCC report the
warning .

Change-Id: Ic2d1adb566ad21deec65c66552e2863254e1376a
Signed-off-by: Jerry Yu <jerry.h.yu@arm.com>
This commit is contained in:
Jerry Yu 2019-10-14 16:46:26 +08:00
parent f0104600a0
commit b441659879

View File

@ -212,7 +212,7 @@
#define PROVIDER_INFO(_func_entry) \
({ DIGNOSTIC_PUSH() \
DIGNOSTIC_IGNORE(-Wnested-externs) \
extern void _func_entry(); \
extern void _func_entry(void); \
DIGNOSTIC_POP() \
_func_entry; \
})