double_abs-dsf2.c 158 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 //C: '-msoft-fp-double -msoft-fp-single' //#include <math.h> double fabs(double x); int main(void) { volatile double a, z; z = fabs(a); return 0; }