Hi,
I'm little bit lost. So, you can include header file into your code (like #include <stdlib.h> ) - path for standard C headers is already configured for your project . For non-standard header files is compiler is looking in the paths specified in project properties:

Standard C functions are in STD C library. You don't need to add it - it is added by default. The Math library is special case - the version of libm.a depends on which float point type you are using.
Jiri