> spirographx.o(.text+0x30f): In function `getAll':
> : undefined reference to `sincosf'

Per Google, it's a gnu-ism: http://linux.die.net/man/3/sincosf

    void sincosf(float x, float *sin, float *cos);

    Several applications need sine and cosine of the same angle x.
    This function computes both at the same time, and stores the
    results via the given pointers.

Probably a 10-liner by just calling sin() and cos() separately --
a bit more work to do it "properly" -- or just grab the gnu code
if you don't need to be BSD-licensed.
_______________________________________________
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to