tinycc-devel
[Top][All Lists]
Advanced

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

Re: [Tinycc-devel] Error in stdio.h : __builtin_va_list


From: grischka
Subject: Re: [Tinycc-devel] Error in stdio.h : __builtin_va_list
Date: Sat, 02 Oct 2010 00:42:53 +0200
User-agent: Thunderbird 2.0.0.23 (Windows/20090812)

Luis Alejandro Muzzachiodi wrote:
#ifndef    _VA_LIST
#define _VA_LIST
#if defined __GNUC__ && __GNUC__ >= 3
typedef __builtin_va_list va_list;
#else
typedef char* va_list;
#endif
#endif

(because the GCC-dependency of GTK i'm working with "-D__GNUC__=3.45" ).

Well, it is just that only GCC (the compiler) should define __GNUC__.

You could talk to the GTK people whether they would care to support
other compilers or otherwise just modify your tinycc headers.

--- grischka



reply via email to

[Prev in Thread] Current Thread [Next in Thread]