blob: da884b328a7c2d7d392903102b682129a9393553 [file] [log] [blame]
Antonio Nino Diazcf0f8052018-08-17 10:45:47 +01001/*
2 * Copyright (c) 2012-2017 Roberto E. Vargas Caballero
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
Antonio Nino Diaz6ef16122018-08-15 19:51:09 +01006/*
7 * Portions copyright (c) 2018, ARM Limited and Contributors.
8 * All rights reserved.
9 */
Antonio Nino Diazcf0f8052018-08-17 10:45:47 +010010
11#ifndef _STDDEF_H
12#define _STDDEF_H
13
Antonio Nino Diaz6ef16122018-08-15 19:51:09 +010014#include <stddef_.h>
Antonio Nino Diazcf0f8052018-08-17 10:45:47 +010015
16#ifndef NULL
17#define NULL ((void *) 0)
18#endif
19
20#define offsetof(st, m) ((size_t)&(((st *)0)->m))
21
22#endif