Luna/libc/include/bits/attrs.h
apio b70bbc0ba6
All checks were successful
continuous-integration/drone/push Build is passing
More libc commenting
2023-01-07 11:21:53 +01:00

14 lines
374 B
C

/* bits/attrs.h: Macros wrapping GCC attributes for use in the standard library. */
#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