#ifndef lint static char sccsid[] = "@(#)d_exp2_.c 1.1 94/10/31 SMI"; #endif /* * Copyright (c) 1986 by Sun Microsystems, Inc. */ #include double d_exp2_(x) double *x; { return exp2(*x); }