aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/expression_command/macros/macro2.h
blob: cec6efbba990e95a543f55d19abd6578358c426b (plain) (blame)
1
2
3
4
5
6
7
8
#define HUNDRED 100
#define THOUSAND 1000
#define MILLION 1000000

#define MAX(a, b)\
((a) > (b) ?\
  (a):\
  (b))