[L4alpha-cvscommit] CVS: L4Alpha/include/klibc types.h,1.2,1.3
Status: Beta
Brought to you by:
dpotts
|
From: Daniel P. <dp...@us...> - 2002-09-17 03:47:18
|
Update of /cvsroot/l4alpha/L4Alpha/include/klibc In directory usw-pr-cvs1:/tmp/cvs-serv14945/include/klibc Modified Files: types.h Log Message: Gcc 3 support _Bool type. Patch thanks to Andrewb Index: types.h =================================================================== RCS file: /cvsroot/l4alpha/L4Alpha/include/klibc/types.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** types.h 13 Apr 2001 05:45:51 -0000 1.2 --- types.h 17 Sep 2002 03:47:12 -0000 1.3 *************** *** 30,34 **** --- 30,36 ---- #include <l4/types.h> + #if defined(__GNUC__) && __GNUC__ < 3 typedef unsigned char _Bool; /* part of new C standard */ + #endif typedef signed char int8_t; typedef unsigned char uint8_t; |