date and time created 80/10/30 00:33:45 by mckusick
[unix-history] / usr / src / usr.bin / pascal / libpc / LN.c
/* Copyright (c) 1979 Regents of the University of California */
static char sccsid[] = "@(#)LN.c 1.1 %G%";
#include "h01errs.h"
double
LN(value)
double value;
{
if (value <= 0) {
ERROR(ELN, value);
return;
}
return log(value);
}