1 #include <ieeefp.h> 2 3 fp_except fpgetmask(void)4fpgetmask(void) 5 { 6 return 0; 7 } 8 9 fp_rnd fpgetround(void)10fpgetround(void) 11 { 12 return 0; 13 } 14 15 fp_except fpgetsticky(void)16fpgetsticky(void) 17 { 18 return 0; 19 } 20 21 /* ARGSUSED */ 22 fp_except fpsetmask(fp_except mask)23fpsetmask(fp_except mask) 24 { 25 return 0; 26 } 27 28 /* ARGSUSED */ 29 fp_rnd fpsetround(fp_rnd rnd_dir)30fpsetround(fp_rnd rnd_dir) 31 { 32 return 0; 33 } 34 35 /* ARGSUSED */ 36 fp_except fpsetsticky(fp_except sticky)37fpsetsticky(fp_except sticky) 38 { 39 return 0; 40 } 41