Luna/libs/libc/include/bits/macros.h

8 lines
201 B
C
Raw Normal View History

2022-10-08 09:32:01 +00:00
#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