gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:isnan from t2ex/bsd_source/lib/libc/src_bsd/math/s_fmaxf.c (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/math/s_fmaxf.c - 1.9KB - 47 lines
33:         /* Check for NaNs to avoid raising spurious exceptions. */
34:         if (isnan(x))
35:                 return (y);
36:         if (isnan(y))
37:                 return (x);