Date: Sun, 18 Jun 2000 15:41:07 -0400 Message-Id: <200006181941.PAA19049@envy.delorie.com> From: DJ Delorie To: djgpp-workers AT delorie DOT com In-reply-to: <394D1D28.DBF577EC@softhome.net> (message from Laurynas Biveinis on Sun, 18 Jun 2000 21:04:08 +0200) Subject: Re: Patch: new GCC builtins for stdarg.h/varargs.h References: <394D1D28 DOT DBF577EC AT softhome DOT net> Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > +#if ((__GNUC_ == 2) && (__GNUC_MINOR__ >= 96) || (__GNUC__ >= 3)) Suggest this instead: #if ((__GNUC_ == 2) && (__GNUC_MINOR__ >= 96)) || (__GNUC__ >= 3) > -#define __DJ_wint_t typedef int wint_t; > +#define __DJ_wint_t typedef unsigned int wint_t; Please don't check in two independent changes at the same time. The va changes look OK to me, if nobody else objects, as long as you've tested them and they work OK. No comment on the wint_t changes; we've already been through that.