I'm using the avr toolchain 3.5.4_468 from ATMel.
fabs() is nowhere to be found.
I've tried building with and without -lm and I get
undefined reference to `fabs'
at link time.
I mean, I can use a #define to make it (x<0)?-x:x, but this is supposed to just work, right?