1 2 3 4 5 6 7 8 9 10 11 12 13 14
int foo (double d) { d = -d; if (d < 0.0) return 1; return 2; } int main (void) { foo (0.0); }