1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:18:12 +00:00
serenity/LibC/sys/cdefs.h
2018-10-31 15:53:11 +01:00

12 lines
208 B
C

#pragma once
#define ALWAYS_INLINE inline __attribute__ ((always_inline))
#ifdef __cplusplus
#define __BEGIN_DECLS extern "C" {
#define __END_DECLS }
#else
#define __BEGIN_DECLS
#define __END_DECLS
#endif