This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: GCC Steering Committee decision on ISO C conversion


On Fri, Jun 14, 2002 at 03:59:14PM +0100, Richard Earnshaw wrote:
> > ... But there's a lot more we can do for ISO C90
> > conversion.
> 
> > E.g. as you suggested above, you can convert to the new function
> > definitions and use bool parameters.  
> 
> IIRC bool wasn't added until C95; I certainly can't find any mention of it 
> in c90.

That's not relevant here, since if stdbool.h is not provided and ISO C99
compiler is not used, bool will be define:
typedef char _Bool;
# define bool _Bool
so it is all about whether we can use char parameters.

	Jakub


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]