1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-11-24 14:01:03 +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

@ -714,21 +714,21 @@ static struct builtin bintab[] = {
/**/
int
setup_files(Module m)
setup_(Module m)
{
return 0;
}
/**/
int
boot_files(Module m)
boot_(Module m)
{
return !addbuiltins(m->nam, bintab, sizeof(bintab)/sizeof(*bintab));
}
/**/
int
cleanup_files(Module m)
cleanup_(Module m)
{
deletebuiltins(m->nam, bintab, sizeof(bintab)/sizeof(*bintab));
return 0;
@ -736,7 +736,7 @@ cleanup_files(Module m)
/**/
int
finish_files(Module m)
finish_(Module m)
{
return 0;
}