From: | David McMinn |
Date: | 12 Jun 2000 at 15:55:00 |
Subject: | Re: Sin and cos |
Hi Thomas
> Can someone tell me which include I need (I thought it was math.h) or
> just why it can't find these functions?
you also need to tell it to link the math functions into the program, so you'll
need to add something like "-lm" or "-lmath" to the linker stage (or the
compiler stage if you do it all in one line).