mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 22:18:12 +00:00
12 lines
208 B
C
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
|
|
|