#if 0 # define TGSOURCE "exp2.c" #include "_tgmath.h" #include TYPE TGFN(exp2)(TYPE x) { SIGNAL_SAFE(0); switch (fpclassify(x)) { case FP_ZERO: return 1.0; case FP_INFINITE: return signbit(x) ? 0.0 : x; default: break; } return x; } /* STDC(199901) LINK(m) */ #endif