mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
16 lines
212 B
C
16 lines
212 B
C
#include "zsh.mdh"
|
|
|
|
int boot_ _((Module));
|
|
int cleanup_ _((Module));
|
|
int modentry _((int boot, Module m));
|
|
|
|
/**/
|
|
int
|
|
modentry(int boot, Module m)
|
|
{
|
|
if (boot)
|
|
return boot_(m);
|
|
else
|
|
return cleanup_(m);
|
|
}
|