2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
|
2018-10-31 02:09:11 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
2018-11-05 16:40:48 +01:00
|
|
|
#define _POSIX_VERSION 200809L
|
|
|
|
|
|
2018-10-31 02:09:11 +01:00
|
|
|
#ifdef __cplusplus
|
2019-09-23 18:58:12 +02:00
|
|
|
# ifndef __BEGIN_DECLS
|
|
|
|
|
# define __BEGIN_DECLS extern "C" {
|
|
|
|
|
# define __END_DECLS }
|
|
|
|
|
# endif
|
2018-10-31 02:09:11 +01:00
|
|
|
#else
|
2019-09-23 18:58:12 +02:00
|
|
|
# ifndef __BEGIN_DECLS
|
|
|
|
|
# define __BEGIN_DECLS
|
|
|
|
|
# define __END_DECLS
|
|
|
|
|
# endif
|
2018-10-31 02:09:11 +01:00
|
|
|
#endif
|
2018-11-05 14:50:41 +01:00
|
|
|
|
|
|
|
|
#undef __P
|
|
|
|
|
#define __P(a) a
|