apio
8398b2e2e4
That way, we don't pollute user programs with our own 'noreturn' and 'deprecated' macros
8 lines
214 B
C
8 lines
214 B
C
#ifndef _BITS_MACROS_H
|
|
#define _BITS_MACROS_H
|
|
|
|
#define __lc_noreturn __attribute__((noreturn))
|
|
#define __lc_align(n) __attribute__((aligned(n)))
|
|
#define __lc_deprecated(msg) __attribute__((deprecated(msg)))
|
|
|
|
#endif |