summaryrefslogtreecommitdiff
path: root/StdLib/Include/iso646.h
diff options
context:
space:
mode:
authorGuo Mang <mang.guo@intel.com>2017-08-02 09:54:47 +0800
committerGuo Mang <mang.guo@intel.com>2017-09-05 19:45:08 +0800
commit6c128c65b5ec0e5b8b5a0ccb165f3afd29e485f8 (patch)
tree444372d92a0ae8991fe4d15eb3937df43690dfda /StdLib/Include/iso646.h
parentb207c6434d7a5a4502975d322312e07017e8a8cb (diff)
downloadedk2-platforms-6c128c65b5ec0e5b8b5a0ccb165f3afd29e485f8.tar.xz
Remove core packages since we can get them from edk2 repository
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Guo Mang <mang.guo@intel.com>
Diffstat (limited to 'StdLib/Include/iso646.h')
-rw-r--r--StdLib/Include/iso646.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/StdLib/Include/iso646.h b/StdLib/Include/iso646.h
deleted file mode 100644
index d9dc860346..0000000000
--- a/StdLib/Include/iso646.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/** @file
- Provides alternative "spellings" for several C operators.
-
- The header <iso646.h> defines the following eleven macros (on the left) that expand
- to the corresponding tokens (on the right).
-
- Copyright (c) 2010 - 2011, Intel Corporation. All rights reserved.<BR>
- This program and the accompanying materials are licensed and made available under
- the terms and conditions of the BSD License that accompanies this distribution.
- The full text of the license may be found at
- http://opensource.org/licenses/bsd-license.
-
- THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
- WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
-**/
-#ifndef _ISO646_H
-#define _ISO646_H
-#include <sys/EfiCdefs.h>
-
-#define and && ///< Logical AND of two boolean expressions
-#define and_eq &= ///< Bitwise AND with assignment to lval
-#define bitand & ///< Bitwise AND of two scalar expressions
-#define bitor | ///< Bitwise OR of two scalar expressions
-#define compl ~ ///< Binary complement
-#define not ! ///< Logical complement of a boolean expression
-#define not_eq != ///< Not-equal comparison
-#define or || ///< Logical OR of two boolean expressions
-#define or_eq |= ///< Bitwise OR with assignment to lval
-#define xor ^ ///< Exclusive OR
-#define xor_eq ^= ///< Exclusive OR with assignment to lval
-
-#endif /* _ISO646_H */