1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-30 05:40:58 +01:00

manual/9083

This commit is contained in:
Tanaka Akira 1999-12-16 14:26:16 +00:00
parent 77d48c89e0
commit 02c0df2174
80 changed files with 470 additions and 394 deletions

View file

@ -729,7 +729,7 @@ static struct builtin bintab[] = {
/**/
int
setup_zutil(Module m)
setup_(Module m)
{
zstyles = NULL;
@ -738,14 +738,14 @@ setup_zutil(Module m)
/**/
int
boot_zutil(Module m)
boot_(Module m)
{
return !addbuiltins(m->nam, bintab, sizeof(bintab)/sizeof(*bintab));
}
/**/
int
cleanup_zutil(Module m)
cleanup_(Module m)
{
deletebuiltins(m->nam, bintab, sizeof(bintab)/sizeof(*bintab));
return 0;
@ -753,7 +753,7 @@ cleanup_zutil(Module m)
/**/
int
finish_zutil(Module m)
finish_(Module m)
{
freestypat(zstyles);