blob: 49357f5c8b4742649aafccf1b2650a55f60cc3a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#define offsetof(type, member) __builtin_offsetof(type, member)
#ifndef KERNEL
# include <sys/cdefs.h>
# ifdef __cplusplus
# define NULL nullptr
# else
# define NULL ((void*)0)
# endif
typedef __PTRDIFF_TYPE__ ptrdiff_t;
typedef __SIZE_TYPE__ size_t;
#endif
|