blob: 58a519e523c937edf6da717921b4d39d89fda5d3 [file] [log] [blame]
Ambroise Vincent4128f9f2019-02-11 13:34:41 +00001/*
2 * Copyright (c) 2012-2017 Roberto E. Vargas Caballero
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6/*
Bence Szépkúti59130302019-12-18 17:18:16 +01007 * Portions copyright (c) 2018-2019, ARM Limited and Contributors.
Ambroise Vincent4128f9f2019-02-11 13:34:41 +00008 * All rights reserved.
9 */
10
11#ifndef STDDEF_H
12#define STDDEF_H
13
14#include <stddef_.h>
15
Bence Szépkúti59130302019-12-18 17:18:16 +010016#ifndef _PTRDIFF_T
17typedef long ptrdiff_t;
18#define _PTRDIFF_T
19#endif
20
Ambroise Vincent4128f9f2019-02-11 13:34:41 +000021#ifndef NULL
22#define NULL ((void *) 0)
23#endif
24
25#define offsetof(st, m) __builtin_offsetof(st, m)
26
27#endif /* STDDEF_H */