mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-25 22:35:42 +00:00

Consolidate the definition of size_t to one header per AArch, and the definition of NULL to one header Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com> Change-Id: Iecfbad2cf360cfb705ce7aaa981700fd16219b82
15 lines
250 B
C
15 lines
250 B
C
/*
|
|
* Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef STDIO__H
|
|
#define STDIO__H
|
|
|
|
#ifndef SSIZET_
|
|
typedef long ssize_t;
|
|
#define SSIZET_
|
|
#endif
|
|
|
|
#endif /* STDIO__H */
|