update makefile. fix c89

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@682 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-11-13 01:34:00 +00:00
parent 45a982b283
commit 7e7e9f776d
5 changed files with 21 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
/* $Id$ */
/* This file gets included by backend */
#define CALL(NAME) \
static int _MwLL##NAME##CallInit(void) { \
int MwLL##NAME##CallInit(void) { \
int st; \
\
if((st = MwLL##NAME##CallInitImpl()) != 0) return st; \
@@ -53,5 +53,4 @@
MwLLMakeToolWindow = MwLLMakeToolWindowImpl; \
\
return 0; \
} \
int (*MwLL##NAME##CallInit)(void) = _MwLL##NAME##CallInit;
}