[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Will ADT22Unix work for me again?



On Mar 3, 9:40 pm, Tristan Mumford <xtristan.xmumf...@xgmail.xcom>
wrote:

> I fixed the warnings by adding string.h and stdlib.h to adt.c and adding
> string.h again to ucomm.c
>
> It still won't work for some reason.

The warnings are completely harmless - just there to remind you that
you've not included the correct ANSI C headers, which your fix fixes.

Like most C compilers gcc intrinsically recognises almost all the
symbols in the standard library, I think primarily since there is so
much old K&R style code that was written before the advent of function
protoypes, and C programmers tend to treat much of the standard
library as language native functionality.

Matt