/* Copyright (C) 1994 by Thomas Glen Smith. All Rights Reserved. */ /* pitimesx APL2 V1.0.0 ************************************************ * Returns a multiple of pi = 3.14159... * ***********************************************************************/ #define INCLUDES MATH #include "includes.h" void pitimesx(rite,ret) double *rite,*ret; { static double pi = PI; /* 3.14159265358979323846 */ *ret++ = *rite++ * pi; *ret++ = *rite++ * pi; }