From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12881 invoked from network); 20 Dec 1999 22:22:16 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 20 Dec 1999 22:22:16 -0000 Received: (qmail 124 invoked by alias); 20 Dec 1999 22:22:10 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 9123 Received: (qmail 117 invoked from network); 20 Dec 1999 22:22:09 -0000 To: zsh-workers@sunsite.auc.dk Subject: Re: Suggestion: c library access In-reply-to: "Sven Wischnowsky"'s message of "Fri, 17 Dec 1999 10:08:54 +0100." <199912170908.KAA25115@beta.informatik.hu-berlin.de> Date: Mon, 20 Dec 1999 22:23:23 +0000 From: Peter Stephenson Message-Id: Sven Wischnowsky wrote: > This reminded me: mathfunc uses drem(), but at least the Solaris 5.6 I > have access to here doesn't seem to have that. It's not worth testing for, let's remove it. --- Doc/Zsh/mod_mathfunc.yo.mf Mon Dec 20 21:50:37 1999 +++ Doc/Zsh/mod_mathfunc.yo Mon Dec 20 21:50:06 1999 @@ -37,7 +37,7 @@ 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). --- Src/Modules/mathfunc.c.mf Mon Dec 20 21:22:36 1999 +++ Src/Modules/mathfunc.c Mon Dec 20 21:49:51 1999 @@ -45,7 +45,6 @@ MF_COPYSIGN, MF_COS, MF_COSH, -MF_DREM, MF_ERF, MF_ERFC, MF_EXP, @@ -131,7 +130,6 @@ 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), @@ -294,10 +292,6 @@ case MF_COSH: retd = cosh(argd); - break; - - case MF_DREM: - retd = drem(argd, argd2); break; case MF_ERF: -- Peter Stephenson