2022-06-02 14:20:55 +03:00
|
|
|
/* This software is licensed by the MIT License, see LICENSE file */
|
|
|
|
/* Copyright © 2022 Gregory Lirent */
|
|
|
|
|
2022-08-22 11:56:16 +03:00
|
|
|
#include "../../include/bits/__attributes.h"
|
2022-06-02 14:20:55 +03:00
|
|
|
|
2022-08-16 01:36:37 +03:00
|
|
|
#define pure__ Pure__
|
|
|
|
#define const__ __attribute__((const))
|
|
|
|
#define leaf__ __attribute__((leaf))
|
|
|
|
#define wur__ Warn_unused_result__
|
|
|
|
#define inline__ Always_inline__
|
2022-06-02 14:20:55 +03:00
|
|
|
|
|
|
|
#define ainline(...) inline __VA_ARGS__ inline__; inline __VA_ARGS__
|