1
0
mirror of https://github.com/zsh-users/zsh synced 2024-07-08 19:55:44 +00:00
zsh/Src/modentry.c
1999-04-15 18:05:38 +00:00

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);
}