Elliott Hughes | 13da600 | 2025-02-03 10:42:13 -0800 | [diff] [blame] | 1 | // Copyright (C) 2017 The Android Open Source Project |
2 | // SPDX-License-Identifier: BSD-2-Clause | ||||
Elliott Hughes | 21b56eb | 2017-10-20 17:57:17 -0700 | [diff] [blame] | 3 | |
4 | #include <iso646.h> | ||||
5 | |||||
6 | #include "header_checks.h" | ||||
7 | |||||
8 | static void iso646_h() { | ||||
9 | #if !defined(and) | ||||
10 | #error and | ||||
11 | #endif | ||||
12 | #if !defined(and_eq) | ||||
13 | #error and_eq | ||||
14 | #endif | ||||
15 | #if !defined(bitand) | ||||
16 | #error bitand | ||||
17 | #endif | ||||
18 | #if !defined(bitor) | ||||
19 | #error bitor | ||||
20 | #endif | ||||
21 | #if !defined(compl) | ||||
22 | #error compl | ||||
23 | #endif | ||||
24 | #if !defined(not) | ||||
25 | #error not | ||||
26 | #endif | ||||
27 | #if !defined(not_eq) | ||||
28 | #error not_eq | ||||
29 | #endif | ||||
30 | #if !defined(or) | ||||
31 | #error or | ||||
32 | #endif | ||||
33 | #if !defined(or_eq) | ||||
34 | #error or_eq | ||||
35 | #endif | ||||
36 | #if !defined(xor) | ||||
37 | #error xor | ||||
38 | #endif | ||||
39 | #if !defined(xor_eq) | ||||
40 | #error xor_eq | ||||
41 | #endif | ||||
42 | } |