Skip to content

Commit 48e612f

Browse files
author
Oliver Kiddle
committed
53999: remove further remnants of ansi2knr support from AIX specific code
1 parent fa40c50 commit 48e612f

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
2025-10-23 Oliver Kiddle <[email protected]>
22

3+
* 53999: Src/module.c: remove further remnants of ansi2knr
4+
support from AIX specific code
5+
36
* 54000: Completion/BSD/Command/_bectl: new completion
47

58
2025-10-21 Jun-ichi Takimoto <[email protected]>

Src/module.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1724,42 +1724,42 @@ module_loaded(const char *name)
17241724
static int
17251725
dyn_setup_module(Module m)
17261726
{
1727-
return ((int (*)_((int,Module, void*))) m->u.handle)(0, m, NULL);
1727+
return ((int (*)(int,Module, void*)) m->u.handle)(0, m, NULL);
17281728
}
17291729

17301730
/**/
17311731
static int
17321732
dyn_features_module(Module m, char ***features)
17331733
{
1734-
return ((int (*)_((int,Module, void*))) m->u.handle)(4, m, features);
1734+
return ((int (*)(int,Module, void*)) m->u.handle)(4, m, features);
17351735
}
17361736

17371737
/**/
17381738
static int
17391739
dyn_enables_module(Module m, int **enables)
17401740
{
1741-
return ((int (*)_((int,Module, void*))) m->u.handle)(5, m, enables);
1741+
return ((int (*)(int,Module, void*)) m->u.handle)(5, m, enables);
17421742
}
17431743

17441744
/**/
17451745
static int
17461746
dyn_boot_module(Module m)
17471747
{
1748-
return ((int (*)_((int,Module, void*))) m->u.handle)(1, m, NULL);
1748+
return ((int (*)(int,Module, void*)) m->u.handle)(1, m, NULL);
17491749
}
17501750

17511751
/**/
17521752
static int
17531753
dyn_cleanup_module(Module m)
17541754
{
1755-
return ((int (*)_((int,Module, void*))) m->u.handle)(2, m, NULL);
1755+
return ((int (*)(int,Module, void*)) m->u.handle)(2, m, NULL);
17561756
}
17571757

17581758
/**/
17591759
static int
17601760
dyn_finish_module(Module m)
17611761
{
1762-
return ((int (*)_((int,Module,void *))) m->u.handle)(3, m, NULL);
1762+
return ((int (*)(int,Module,void *)) m->u.handle)(3, m, NULL);
17631763
}
17641764

17651765
/**/

0 commit comments

Comments
 (0)