/* Copyright (C) 1996 by Thomas Glen Smith. All Rights Reserved. */
/* logamma APL2 V1.0.0 *************************************************
* Natural logarithm of gamma for complex numbers. *
***********************************************************************/
#define INCLUDES 0
#include "includes.h"
void logamma(carg,cans)
double *carg,*cans;
{
Gammax;
gammax(carg,cans,0);
return;
}