8 lines
191 B
C
8 lines
191 B
C
#ifndef __MACROS_H
|
|
#define __MACROS_H
|
|
|
|
#define noreturn __attribute__((noreturn))
|
|
#define align(n) __attribute__((aligned(n)))
|
|
#define deprecated(msg) __attribute__((deprecated(msg)))
|
|
|
|
#endif |