6 lines
199 B
C
6 lines
199 B
C
#pragma once
|
|
|
|
#define _weak __attribute__((weak))
|
|
#define _format(n, m) __attribute__((format(printf, n, m)))
|
|
#define _align(x) __attribute__((aligned(x)))
|
|
#define _noreturn __attribute__((noreturn)) |