mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00
Merge "fix(libc): properly define SCHAR_MIN" into integration
This commit is contained in:
commit
bacfff8bb0
2 changed files with 4 additions and 4 deletions
|
@ -1,11 +1,11 @@
|
|||
/*
|
||||
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2018-2023, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#define SCHAR_MAX 0x7F
|
||||
#define SCHAR_MIN (-SCHAR_MIN - 1)
|
||||
#define SCHAR_MIN (-SCHAR_MAX - 1)
|
||||
#define CHAR_MAX 0x7F
|
||||
#define CHAR_MIN (-CHAR_MAX - 1)
|
||||
#define UCHAR_MAX 0xFFU
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/*
|
||||
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2018-2023, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#define SCHAR_MAX 0x7F
|
||||
#define SCHAR_MIN (-SCHAR_MIN - 1)
|
||||
#define SCHAR_MIN (-SCHAR_MAX - 1)
|
||||
#define CHAR_MAX 0x7F
|
||||
#define CHAR_MIN (-CHAR_MAX - 1)
|
||||
#define UCHAR_MAX 0xFFU
|
||||
|
|
Loading…
Add table
Reference in a new issue