]> git.proxmox.com Git - mirror_edk2.git/blobdiff - StdLib/Include/stdbool.h
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / StdLib / Include / stdbool.h
diff --git a/StdLib/Include/stdbool.h b/StdLib/Include/stdbool.h
deleted file mode 100644 (file)
index 3208866..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-/** @file\r
-  Macros to simplify boolean expressions and operations.\r
-\r
-  This header is not specified by the C95 standard but is included here for\r
-  operational convenience.\r
-\r
-  The macro bool expands to _Bool, as required by the C99 specification.\r
-  This subsequently expands to BOOLEAN, is a UEFI data type which is automatically\r
-  defined correctly for the target CPU architecture.\r
-\r
-  The remaining three macros are suitable for use in #if preprocessing\r
-  directives. They are true, which expands to the integer constant 1,\r
-  false, which expands to the integer constant 0, and\r
-  __bool_true_false_are_defined which expands to the integer constant 1.\r
-\r
-  A program may undefine and perhaps then redefine the\r
-  macros bool, true, and false.\r
-\r
-  Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>\r
-  This program and the accompanying materials are licensed and made available under\r
-  the terms and conditions of the BSD License that accompanies this distribution.\r
-  The full text of the license may be found at\r
-  http://opensource.org/licenses/bsd-license.\r
-\r
-  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
-**/\r
-#ifndef _STDBOOL_H\r
-#define _STDBOOL_H\r
-#include  <sys/EfiCdefs.h>\r
-\r
-#define bool    _Bool\r
-#define true        1\r
-#define false       0\r
-#define __bool_true_false_are_defined 1\r
-\r
-#endif    /* _STDBOOL_H */\r