blob: af96d01620c71ce3f67e2dc4d94889ce443712ad [file] [log] [blame]
Antonio Nino Diaz6ef16122018-08-15 19:51:09 +01001/*
2 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef SIZET_
8typedef unsigned int size_t;
9#define SIZET_
10#endif
11
12#define EXIT_FAILURE 1
13#define EXIT_SUCCESS 0