blob: 3e5883ece4a93f9bf6f06d786d984ff0b17702ae [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 long size_t;
9#define SIZET_
10#endif
11
12#ifndef _PTRDIFF_T
13typedef long ptrdiff_t;
14#define _PTRDIFF_T
15#endif