m4-discuss
[Top][All Lists]
Advanced

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

Re: AIX 4.3.3 IBM C compiler patch for m4-1.4.8


From: Paul Eggert
Subject: Re: AIX 4.3.3 IBM C compiler patch for m4-1.4.8
Date: Sun, 04 Feb 2007 21:13:16 -0800
User-agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.4 (gnu/linux)

Eric Blake <address@hidden> writes:

> bool foo BOOL_BITFIELD;

I'd suggest rather something like this:

   typedef unsigned int bool_bitfield;

so that your structure members can look like this:

   bool_bitfield foo : 1;

This doesn't rely on any autoconf or cpp magic, which is a win.




reply via email to

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