11 lines
227 B
C
11 lines
227 B
C
#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
|