git: f7e2f98bffda - main - atomic: Remove cdefs.h includes from atomic_*.h

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Mon, 16 Jan 2023 13:05:09 UTC
The branch main has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=f7e2f98bffdafff65012fb02ad838c30b7e3502f

commit f7e2f98bffdafff65012fb02ad838c30b7e3502f
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2023-01-16 13:03:20 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2023-01-16 13:03:20 +0000

    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
---
 sys/sys/atomic_common.h | 1 -
 sys/sys/atomic_san.h    | 1 -
 2 files changed, 2 deletions(-)

diff --git a/sys/sys/atomic_common.h b/sys/sys/atomic_common.h
index a7b0b50512dc..b7bfa151e8ca 100644
--- a/sys/sys/atomic_common.h
+++ b/sys/sys/atomic_common.h
@@ -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))
diff --git a/sys/sys/atomic_san.h b/sys/sys/atomic_san.h
index 9ceea2988db2..beeea82a666b 100644
--- a/sys/sys/atomic_san.h
+++ b/sys/sys/atomic_san.h
@@ -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)				\