summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--Src/module.c12
2 files changed, 9 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index c0e327feb..9521d999d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2025-10-23 Oliver Kiddle <opk@zsh.org>
+ * 53999: Src/module.c: remove further remnants of ansi2knr
+ support from AIX specific code
+
* 54000: Completion/BSD/Command/_bectl: new completion
2025-10-21 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
diff --git a/Src/module.c b/Src/module.c
index b4b5d0a2c..af0251f4e 100644
--- a/Src/module.c
+++ b/Src/module.c
@@ -1724,42 +1724,42 @@ module_loaded(const char *name)
static int
dyn_setup_module(Module m)
{
- return ((int (*)_((int,Module, void*))) m->u.handle)(0, m, NULL);
+ return ((int (*)(int,Module, void*)) m->u.handle)(0, m, NULL);
}
/**/
static int
dyn_features_module(Module m, char ***features)
{
- return ((int (*)_((int,Module, void*))) m->u.handle)(4, m, features);
+ return ((int (*)(int,Module, void*)) m->u.handle)(4, m, features);
}
/**/
static int
dyn_enables_module(Module m, int **enables)
{
- return ((int (*)_((int,Module, void*))) m->u.handle)(5, m, enables);
+ return ((int (*)(int,Module, void*)) m->u.handle)(5, m, enables);
}
/**/
static int
dyn_boot_module(Module m)
{
- return ((int (*)_((int,Module, void*))) m->u.handle)(1, m, NULL);
+ return ((int (*)(int,Module, void*)) m->u.handle)(1, m, NULL);
}
/**/
static int
dyn_cleanup_module(Module m)
{
- return ((int (*)_((int,Module, void*))) m->u.handle)(2, m, NULL);
+ return ((int (*)(int,Module, void*)) m->u.handle)(2, m, NULL);
}
/**/
static int
dyn_finish_module(Module m)
{
- return ((int (*)_((int,Module,void *))) m->u.handle)(3, m, NULL);
+ return ((int (*)(int,Module,void *)) m->u.handle)(3, m, NULL);
}
/**/