13 lines
430 B
C
13 lines
430 B
C
/* This software is licensed by the MIT License, see LICENSE file */
|
|
/* Copyright © 2022 Gregory Lirent */
|
|
|
|
#include "../../include/bits/__attributes.h"
|
|
|
|
#define pure__ Pure__
|
|
#define const__ __attribute__((const))
|
|
#define leaf__ __attribute__((leaf))
|
|
#define wur__ Warn_unused_result__
|
|
#define inline__ Always_inline__
|
|
|
|
#define ainline(...) inline __VA_ARGS__ inline__; inline __VA_ARGS__
|