/* Copyright (c) 1979 Regents of the University of California */ static char sccsid[] = "@(#)SQRT.c 1.4 01/09/89"; #include double SQRT(value) double value; { if (value < 0) { ERROR("Negative argument of %e to sqrt\n", value); } return sqrt(value); }