logo       
Google Custom Search
    AddThis Social Bookmark Button
-->

Re: va_list pointers, bad(?) gcc code: msg#00012

Subject: Re: va_list pointers, bad(?) gcc code
Michal Ludvig told me that:
Frank van der Linden told me that:

(no include files used to make it OS
independent):

That might be the problem. Try to replace

#define va_list __builtin_va_list
#define va_start __builtin_va_start
#define va_arg __builtin_va_arg
#define va_end __builtin_va_end


With

#include <stdarg.h>

Actually it works even with these __builtin things if you also define:

#define va_copy __builtin_va_copy

Michal Ludvig
--
sUsE cR, s.R.o             mludvig@xxxxxxx | Cray is the only computer
(+420) 296.545.373      http://www.suse.cz | that runs an endless loop
Personal homepage http://www.logix.cz/~mic | in just four hours.




<Prev in Thread] Current Thread [Next in Thread>