mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-23 17:01:05 +02:00
zsh-workers/9123
This commit is contained in:
parent
4297443d88
commit
a6416c1f62
2 changed files with 1 additions and 7 deletions
|
@ -37,7 +37,7 @@ tt(lgamma). Note also that `tt(signgam())' and `tt(signgam)' are distinct
|
|||
expresssions.
|
||||
|
||||
The following functions take two floating point arguments: tt(copysign),
|
||||
tt(drem), tt(fmod), tt(hypot), tt(nextafter).
|
||||
tt(fmod), tt(hypot), tt(nextafter).
|
||||
|
||||
The following take an integer first argument and a floating point second
|
||||
argument: tt(jn), tt(yn).
|
||||
|
|
|
@ -45,7 +45,6 @@ MF_CEIL,
|
|||
MF_COPYSIGN,
|
||||
MF_COS,
|
||||
MF_COSH,
|
||||
MF_DREM,
|
||||
MF_ERF,
|
||||
MF_ERFC,
|
||||
MF_EXP,
|
||||
|
@ -131,7 +130,6 @@ static struct mathfunc mftab[] = {
|
|||
NUMMATHFUNC("copysign", math_func, 2, 2, MF_COPYSIGN),
|
||||
NUMMATHFUNC("cos", math_func, 1, 1, MF_COS),
|
||||
NUMMATHFUNC("cosh", math_func, 1, 1, MF_COSH),
|
||||
NUMMATHFUNC("drem", math_func, 2, 2, MF_DREM),
|
||||
NUMMATHFUNC("erf", math_func, 1, 1, MF_ERF),
|
||||
NUMMATHFUNC("erfc", math_func, 1, 1, MF_ERFC),
|
||||
NUMMATHFUNC("exp", math_func, 1, 1, MF_EXP),
|
||||
|
@ -296,10 +294,6 @@ math_func(char *name, int argc, mnumber *argv, int id)
|
|||
retd = cosh(argd);
|
||||
break;
|
||||
|
||||
case MF_DREM:
|
||||
retd = drem(argd, argd2);
|
||||
break;
|
||||
|
||||
case MF_ERF:
|
||||
retd = erf(argd);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue