% cat sinf.c
#include <math.h>
main()
{
  float 
    x = sinf(1.0),
    y = conf(1.0),
    z = sqrtf(1.0);
}
% cc sinf.c
ld: Undefined symbols:
_conf
_sinf
_sqrtf
% cc sinf.c -lm
ld: Undefined symbols:
_conf
_sinf
_sqrtf


man sin すると sinf でてくるのにぃ〜〜