Luna/libc/include/bits/attrs.h
apio 8838e2cf22
Some checks failed
continuous-integration/drone/push Build is failing
Bring back the OS-Specific Toolchain on restart :^)
2023-01-06 17:35:07 +01:00

12 lines
289 B
C

#ifndef _BITS_ATTRS_H
#define _BITS_ATTRS_H
#if !defined(_STDLIB_H) && !defined(_STRING_H)
#error "Never include bits/attrs.h directly; use one of the standard library headers."
#endif
#define __noreturn __attribute__((noreturn))
#define __deprecated __attribute__((deprecated))
#endif