libc: Fix including sys/time.h
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
apio 2023-05-27 12:06:00 +02:00
parent 88d1da59e8
commit 8d90d146b2
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -3,7 +3,7 @@
#ifndef _BITS_ATTRS_H
#define _BITS_ATTRS_H
#if !defined(_STDLIB_H) && !defined(_STRING_H) && !defined(_ASSERT_H) && !defined(_SETJMP_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