The extended reference page on arduino.cc indicates that it links against avrlibc, and that any of it's functions can be used.
However, I'm finding that the IDE doesn't recognize at least one function, and that I get a function not declared error when I try to compile
j = rint(i);
error: 'rint' was not declared in this scope
Where the avrlibc docs clearly indicate the presence of the function.