X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=lib%2Fstdbool.in.h;h=05cf0bbfe51e301f166589207e68b3465d64221c;hp=2784a502bf49748383e89c47637f2bc2ce87b613;hb=cb555a94fa5188122569ed3803c463f27ccd0261;hpb=a9fa555c51f48b0db46196fd9359c18e4584816a diff --git a/lib/stdbool.in.h b/lib/stdbool.in.h index 2784a502..05cf0bbf 100644 --- a/lib/stdbool.in.h +++ b/lib/stdbool.in.h @@ -1,9 +1,10 @@ -/* Copyright (C) 2001, 2002, 2003, 2006, 2007 Free Software Foundation, Inc. +/* Copyright (C) 2001, 2002, 2003, 2006, 2007, 2008, 2009 Free Software + Foundation, Inc. Written by Bruno Haible , 2001. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2, or (at your option) + the Free Software Foundation; either version 3, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -58,7 +59,7 @@ /* BeOS already #defines false 0, true 1. We use the same definitions below, but temporarily we have to #undef them. */ -#ifdef __BEOS__ +#if defined __BEOS__ && !defined __HAIKU__ # include /* defines bool but not _Bool */ # undef false # undef true @@ -73,7 +74,7 @@ (see ISO C 99 6.7.2.2.(4)); however, '_Bool' must promote to 'int' (see ISO C 99 6.3.1.1.(2)). So we add a negative value to the enum; this ensures that '_Bool' promotes to 'int'. */ -#if defined __cplusplus || defined __BEOS__ +#if defined __cplusplus || (defined __BEOS__ && !defined __HAIKU__) /* A compiler known to have 'bool'. */ /* If the compiler already has both 'bool' and '_Bool', we can assume they are the same types. */