mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 08:53:20 +00:00
ICU-6412 Avoid multiple definition of macro MIN. Is an issue on certain platforms.
X-SVN-Rev: 25538
This commit is contained in:
parent
1472003a6c
commit
88cde4c236
1 changed files with 2 additions and 0 deletions
|
@ -642,7 +642,9 @@ typedef struct {
|
|||
} CurrencyNameStruct;
|
||||
|
||||
|
||||
#ifndef MIN
|
||||
#define MIN(a,b) (((a)<(b)) ? (a) : (b))
|
||||
#endif
|
||||
|
||||
// Comparason function used in quick sort.
|
||||
static int currencyNameComparator(const void* a, const void* b) {
|
||||
|
|
Loading…
Add table
Reference in a new issue