mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-14 16:37:05 +02: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
16 lines
249 B
C
16 lines
249 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 int ssize_t;
|
|
#define SSIZET_
|
|
#endif
|
|
|
|
#endif /* STDIO__H */
|