2022-10-08 12:06:09 +02:00
|
|
|
#ifndef _BITS_MACROS_H
|
|
|
|
#define _BITS_MACROS_H
|
2022-10-04 19:06:56 +02:00
|
|
|
|
|
|
|
#define noreturn __attribute__((noreturn))
|
|
|
|
#define align(n) __attribute__((aligned(n)))
|
|
|
|
#define deprecated(msg) __attribute__((deprecated(msg)))
|
|
|
|
|
|
|
|
#endif
|