xref: /llvm-project/lldb/test/API/lang/objc/modules-incomplete/minmax.h (revision 99451b4453688a94c6014cac233d371ab4cc342d)
1 #define MY_MIN(A, B) (((A) < (B)) ? (A) : (B))
2 #define MY_MAX(A, B) (((A) < (B)) ? (B) : (A))
3