/*Copyright (C) 1992, 1996 by Thomas Glen Smith. All Rights Reserved.*/
/* recip APL2 V1.0.0 ***************************************************
* Returns the reciprocal. *
***********************************************************************/
#define INCLUDES 0
#include "includes.h"
double recip(rite)
double rite;
{
return(1 / rite);
}