mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-22 23:11:19 +02:00
Change-Id: I4f58bb4660078c9bc76d2826c90b2fa711719a3e Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
16 lines
255 B
C
16 lines
255 B
C
/*
|
|
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef SIZET_
|
|
typedef unsigned long size_t;
|
|
#define SIZET_
|
|
#endif
|
|
|
|
#ifndef SSIZET_
|
|
typedef long ssize_t;
|
|
#define SSIZET_
|
|
#endif
|