mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-22 04:55:50 -04:00

TODO: Add a separate testcase testing *only* Foundation implementation details! <rdar://problem/37252738> llvm-svn: 324655
3 lines
94 B
C
3 lines
94 B
C
#define MY_MIN(A, B) (((A) < (B)) ? (A) : (B))
|
|
#define MY_MAX(A, B) (((A) < (B)) ? (B) : (A))
|