#ifndef lint static char sccsid[] = "@(#)d_exp_.c 1.1 92/07/30 SMI"; #endif /* * Copyright (c) 1986 by Sun Microsystems, Inc. */ #include double d_exp_(x) double *x; { return exp(*x); }