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