1 /* Copyright (C) 2002 by Red Hat, Incorporated. All rights reserved.
3 * Permission to use, copy, modify, and distribute this software
4 * is freely granted, provided that this notice is preserved.
15 #ifdef _DOUBLE_IS_32BITS
17 double exp2 (double x
)
19 return (double) exp2f ((float) x
);
22 #endif /* _DOUBLE_IS_32BITS */