blob: 928481ce9f5e4fb90b7244445f72bc03666fba7a [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#ifndef _PTRDIFF_T
13typedef long ptrdiff_t;
14#define _PTRDIFF_T
15#endif