summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2025-10-23 19:20:03 +0200
committerOliver Kiddle <opk@zsh.org>2025-10-23 19:20:03 +0200
commit48e612fa0747fc375975476c4d97705d1b1b748c (patch)
tree43179f2b6b7665b746b9dea1874aabe6ef7aa48c
parent54000: new completion for FreeBSD's bectl (diff)
downloadzsh-48e612fa0747fc375975476c4d97705d1b1b748c.tar
zsh-48e612fa0747fc375975476c4d97705d1b1b748c.tar.gz
zsh-48e612fa0747fc375975476c4d97705d1b1b748c.tar.bz2
zsh-48e612fa0747fc375975476c4d97705d1b1b748c.tar.lz
zsh-48e612fa0747fc375975476c4d97705d1b1b748c.tar.xz
zsh-48e612fa0747fc375975476c4d97705d1b1b748c.tar.zst
zsh-48e612fa0747fc375975476c4d97705d1b1b748c.zip
53999: remove further remnants of ansi2knr support from AIX specific code
-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);
}
/**/