Re: GNU gcc 3.4.6 Compile Error on Solaris 10

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

 



"Bruce Butler" <BButler@xxxxxxxxxxx> writes:

> void do_remarks_process( id, sec_str, va_alist )
>  int id;
>  char *sec_str;
>  char *va_alist;

Old style varargs are no longer supported.  In order to use newer
versions of gcc you need to use ISO C style stdarg.  That is,
    void do_remarks_process (int id, char *sec_str, ...)

Ian

[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux