diff options
| author | Oliver Kiddle <opk@zsh.org> | 2025-10-23 19:20:03 +0200 |
|---|---|---|
| committer | Oliver Kiddle <opk@zsh.org> | 2025-10-23 19:20:03 +0200 |
| commit | 48e612fa0747fc375975476c4d97705d1b1b748c (patch) | |
| tree | 43179f2b6b7665b746b9dea1874aabe6ef7aa48c /Src/module.c | |
| parent | 54000: new completion for FreeBSD's bectl (diff) | |
| download | zsh-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
Diffstat (limited to 'Src/module.c')
| -rw-r--r-- | Src/module.c | 12 |
1 files changed, 6 insertions, 6 deletions
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); } /**/ |
