diff options
Diffstat (limited to 'src/math/exp2.c')
| -rw-r--r-- | src/math/exp2.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/math/exp2.c b/src/math/exp2.c new file mode 100644 index 00000000..7f67294d --- /dev/null +++ b/src/math/exp2.c @@ -0,0 +1,13 @@ +# define TGSOURCE "exp2.c" +#include "nonstd/tgmath.h" +#include <math.h> + +TYPE TGFN(exp2)(TYPE x) +{ + return x; +} + +/* +STDC(199901) +LINK(m) +*/ |
