> On 2016-01-10 02:36:45 -0800, Ben Hutchinson wrote:
> > I was working with the atan2 function, and it kept glitching all over the
> > place. Turns out I forgot to include this line at the top of my code:
> > #include <math.h>

Vincent Lefevre <[email protected]> wrote:
> Is there any reason why tcc hasn't rejected the code because the
> prototype wasn't declared?

Because C default declares functions for you. It's as if it was
declared

        int atan2(...);

This may have gone away in C11 but I'm not sure.

Arnold

_______________________________________________
Tinycc-devel mailing list
[email protected]
https://lists.nongnu.org/mailman/listinfo/tinycc-devel

Reply via email to