From 8497dae451d1aa90ec819a7171069e8832dcc6d4 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Fri, 30 May 2025 14:19:08 +0000 Subject: Don't conflict with main_func in skalibs Signed-off-by: Laurent Bercot --- tools/gen-multicall.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/gen-multicall.sh b/tools/gen-multicall.sh index 35ace20..63f44f1 100755 --- a/tools/gen-multicall.sh +++ b/tools/gen-multicall.sh @@ -17,14 +17,14 @@ cat < -typedef int main_func (int, char const *const *, char const *const *) ; -typedef main_func *main_func_ref ; +typedef int emain_func (int, char const *const *, char const *const *) ; +typedef emain_func *emain_func_ref ; typedef struct multicall_app_s multicall_app, *multicall_app_ref ; struct multicall_app_s { char const *name ; - main_func_ref mainf ; + emain_func_ref mainf ; } ; static int multicall_app_cmp (void const *a, void const *b) -- cgit v1.3.1