libcdsb/src/__internal/__attributes.h

13 lines
425 B
C

/* This software is licensed by the MIT License, see LICENSE file */
/* Copyright © 2022 Gregory Lirent */
#include "../../include/__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__