bolt/deps/llvm-18.1.8/lldb/test/API/commands/expression/macros/macro2.h
2025-02-14 19:21:04 +01:00

8 lines
115 B
C

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