/* Copyright (c) 1979 Regents of the University of California */ static char sccsid[] = "@(#)LN.c 1.3 01/06/81"; #include #include "h01errs.h" double LN(value) double value; { if (value <= 0) { ERROR(ELN, value); return; } return log(value); }