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