stdbool.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
  2. This file is part of GCC.
  3. GCC is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation; either version 2, or (at your option)
  6. any later version.
  7. GCC is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with GCC; see the file COPYING.  If not, write to
  13. the Free Software Foundation, 59 Temple Place - Suite 330,
  14. Boston, MA 02111-1307, USA.  */
  15. /* As a special exception, if you include this header file into source
  16.    files compiled by GCC, this header file does not by itself cause
  17.    the resulting executable to be covered by the GNU General Public
  18.    License.  This exception does not however invalidate any other
  19.    reasons why the executable file might be covered by the GNU General
  20.    Public License.  */
  21. /*
  22.  * ISO C Standard:  7.16  Boolean type and values  <stdbool.h>
  23.  */
  24. #ifndef _STDBOOL_H
  25. #define _STDBOOL_H
  26. #ifndef __cplusplus
  27. #define bool _Bool
  28. #define true 1
  29. #define false 0
  30. #else /* __cplusplus */
  31. /* Supporting <stdbool.h> in C++ is a GCC extension.  */
  32. #define _Bool bool
  33. #define bool bool
  34. #define false false
  35. #define true true
  36. #endif /* __cplusplus */
  37. /* Signal that all the definitions are present.  */
  38. #define __bool_true_false_are_defined 1
  39. #endif /* stdbool.h */