rovo/kernel/macro.h

11 lines
227 B
C
Raw Permalink Normal View History

2023-06-08 13:14:16 +02:00
#ifndef _COMMON_MACROS_H
#define _COMMON_MACROS_H
#define F_NAKED __attribute__((noreturn))
#define F_INTERRUPT __attribute__((interrupt))
#define S_PACKED __attribute__((packed))
#define static_assert _Static_assert
#endif