aboutsummaryrefslogtreecommitdiff
path: root/arch/all/core/include/iso646.h
blob: 51099798496106a0e0c7a302a1b255db4f377959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ****************************************************************************
 * English words.
 * Copyright (C) 2017 Thomas "Cakeisalie5" Touhey <thomas@touhey.fr>
 * ************************************************************************* */
#include <cdefs.h>

#if !__USE_CXX98
# define and    &&
# define and_eq &=
# define or     ||
# define or_eq  |=
# define not    !
# define not_eq !=

# define bitand &
# define bitor  |
# define xor    ^
# define xor_eq ^=
# define compl  ~
#endif