math library

#include <math.h>

When compiling on a unix system like esus, you must not only include math.h, you must also link in the library during compilation using the -lm switch.
For example: cc myprog.c -lm

All functions take double parameters and return double values.