atomic: Remove cdefs.h includes from atomic_*.h

Avoid including cdefs.h in system headers.  Both headers now include
types.h, and we can assume that that pulls in cdefs.h (required for
__typeof usage in some of the atomic macro expansions).

No functional change intended.

Reviewed by:	imp, kib
MFC after:	1 week
Differential Revision:	https://reviews.freebsd.org/D38039
This commit is contained in:
Mark Johnston 2023-01-16 08:03:20 -05:00
parent 5c2b216a1c
commit f7e2f98bff
2 changed files with 0 additions and 2 deletions

View File

@ -36,7 +36,6 @@
#error do not include this header, use machine/atomic.h
#endif
#include <sys/cdefs.h>
#include <sys/types.h>
#define __atomic_load_bool_relaxed(p) (*(volatile _Bool *)(p))

View File

@ -43,7 +43,6 @@
#error do not include this header, use machine/atomic.h
#endif
#include <sys/cdefs.h>
#include <sys/types.h>
#define ATOMIC_SAN_FUNC_1(sp, op, name, type) \