mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-19 02:54:24 +00:00

Change-Id: I4f58bb4660078c9bc76d2826c90b2fa711719a3e Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
15 lines
253 B
C
15 lines
253 B
C
/*
|
|
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef SIZET_
|
|
typedef unsigned int size_t;
|
|
#define SIZET_
|
|
#endif
|
|
|
|
#ifndef SSIZET_
|
|
typedef int ssize_t;
|
|
#define SSIZET_
|
|
#endif
|