Luna/luna/include/luna/Attributes.h
apio 8598b1e8fc
All checks were successful
continuous-integration/drone/push Build is passing
Replace the _noreturn macro with the C++ native attribute [[noreturn]]
2022-12-06 19:40:35 +01:00

5 lines
155 B
C

#pragma once
#define _weak __attribute__((weak))
#define _format(n, m) __attribute__((format(printf, n, m)))
#define _align(x) __attribute__((aligned(x)))