Luna/libc/include/bits/attrs.h
apio 8d90d146b2
All checks were successful
continuous-integration/drone/push Build is passing
libc: Fix including sys/time.h
2023-05-27 12:06:00 +02:00

14 lines
445 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) && !defined(_ASSERT_H) && !defined(_SETJMP_H) && !defined(_SYS_TIME_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