xref: /rk3399_ARM-atf/include/lib/libc/aarch32/stdio_.h (revision c948f77136c42a92d0bb660543a3600c36dcf7f1)
1 /*
2  * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef STDIO__H
8 #define STDIO__H
9 
10 #ifndef SIZET_
11 typedef unsigned int size_t;
12 #define SIZET_
13 #endif
14 
15 #ifndef SSIZET_
16 typedef int ssize_t;
17 #define SSIZET_
18 #endif
19 
20 #endif /* STDIO__H */
21