summaryrefslogtreecommitdiffstats
path: root/include/lib/libc/aarch64/stdlib_.h
blob: 81a39d14a5aa61df8d53e0f48e178a91dcb74753 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef STDLIB__H
#define STDLIB__H

#ifndef SIZET_
typedef unsigned long size_t;
#define SIZET_
#endif

#define EXIT_FAILURE 1
#define EXIT_SUCCESS 0

#endif /* STDLIB__H */