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