Luna/libluna/include/luna/Attributes.h

6 lines
156 B
C
Raw Normal View History

#pragma once
#define _weak __attribute__((weak))
#define _format(n, m) __attribute__((format(printf, n, m)))
2023-01-02 12:07:29 +00:00
#define _align(x) __attribute__((aligned(x)))