On Tue, 9 May 2000, Ian D. Ponce wrote:

> percent_m.c:17: conflicting types for `sys_errlist'
> /usr/include/stdio.h:553: previous declaration of `sys_errlist'

sys_errlist is declared in stdio.h as

        extern const char *const sys_errlist[];

percent_m.c most probably declares it as

        extern char *sys_errlist[];

and so gcc (egcs) complains, being the good compiler that it is.

//PMana


-
Philippine Linux Users Group. Web site and archives at http://plug.linux.org.ph
To leave: send "unsubscribe" in the body to [EMAIL PROTECTED]

Reply via email to