gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 2 of 2 for funcall:__isfinite (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/math.h - 11.9KB - 470 lines
80:         : (sizeof (x) == sizeof (double)) ? \
81:                 __isfinite(x) \
82:         :      __isfinitel(x))
t2ex_source/include/t2ex/math.h - 12.7KB - 323 lines
61: #define isfinite(x) \
62:         ((sizeof(x) == sizeof(double)) ? __isfinite(x) \
63:         : (sizeof(x) == sizeof(float)) ? __isfinitef(x) \