mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 09:18:42 +09:00
Issue #1971 - Part 2: Update ICU source to 63.2.
This commit is contained in:
parent
8df84683be
commit
1e69214382
3160 changed files with 275815 additions and 234203 deletions
26
intl/icu/source/common/umath.cpp
Normal file
26
intl/icu/source/common/umath.cpp
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
// © 2016 and later: Unicode, Inc. and others.
|
||||
// License & terms of use: http://www.unicode.org/copyright.html
|
||||
/*
|
||||
******************************************************************************
|
||||
*
|
||||
* Copyright (C) 1997-2006, International Business Machines
|
||||
* Corporation and others. All Rights Reserved.
|
||||
*
|
||||
******************************************************************************
|
||||
* This file contains platform independent math.
|
||||
*/
|
||||
|
||||
#include "putilimp.h"
|
||||
|
||||
U_CAPI int32_t U_EXPORT2
|
||||
uprv_max(int32_t x, int32_t y)
|
||||
{
|
||||
return (x > y ? x : y);
|
||||
}
|
||||
|
||||
U_CAPI int32_t U_EXPORT2
|
||||
uprv_min(int32_t x, int32_t y)
|
||||
{
|
||||
return (x > y ? y : x);
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue