Luna/luna/include/luna/Attributes.h
2023-01-02 13:07:29 +01:00

6 lines
156 B
C

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