llvm-project/lldb/packages/Python/lldbsuite/test/expression_command/macros/macro2.h

9 lines
115 B
C

#define HUNDRED 100
#define THOUSAND 1000
#define MILLION 1000000
#define MAX(a, b)\
((a) > (b) ?\
(a):\
(b))