Example #1
0
			inline SPROUT_CONSTEXPR long double
			builtin_ldexp(long double x, int exp) {
				return __builtin_ldexpl(x, exp);
			}
Example #2
0
File: ldexp.c Project: UIKit0/flux
long double ldexpl(long double x, int n) {
	return __builtin_ldexpl(x, n);
}