diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-12-15 21:29:55 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-12-15 21:29:55 +0000 |
commit | 03e230cc54103d18e9c8a18208c7d27805400a71 (patch) | |
tree | efb79fe4d798134599ec6c90cd9912e59ccca69d /Src/Modules/mathfunc.c | |
parent | b9c19b15a6f01279ddcf32ca6fa51894a64a6c16 (diff) | |
download | zsh-03e230cc54103d18e9c8a18208c7d27805400a71.tar.gz zsh-03e230cc54103d18e9c8a18208c7d27805400a71.tar.xz zsh-03e230cc54103d18e9c8a18208c7d27805400a71.zip |
manual:9047
Diffstat (limited to 'Src/Modules/mathfunc.c')
-rw-r--r-- | Src/Modules/mathfunc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Src/Modules/mathfunc.c b/Src/Modules/mathfunc.c index 392424a48..06184fd96 100644 --- a/Src/Modules/mathfunc.c +++ b/Src/Modules/mathfunc.c @@ -450,21 +450,21 @@ math_func(char *name, int argc, mnumber *argv, int id) /**/ int -setup_(Module m) +setup_mathfunc(Module m) { return 0; } /**/ int -boot_(Module m) +boot_mathfunc(Module m) { return !addmathfuncs(m->nam, mftab, sizeof(mftab)/sizeof(*mftab)); } /**/ int -cleanup_(Module m) +cleanup_mathfunc(Module m) { deletemathfuncs(m->nam, mftab, sizeof(mftab)/sizeof(*mftab)); return 0; @@ -472,7 +472,7 @@ cleanup_(Module m) /**/ int -finish_(Module m) +finish_mathfunc(Module m) { return 0; } |