Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libm / mathfp / s_exp2.c
blobc913b3a22a46a89d30db9e7edd3bddfdc032075e
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.
5 */
7 #include "fdlibm.h"
9 #ifndef _DOUBLE_IS_32BITS
11 double
12 exp2 (double x)
14 return pow(2.0, x);
17 #endif /* _DOUBLE_IS_32BITS */