diff options
author | Markus Armbruster <armbru@redhat.com> | 2022-05-06 15:49:10 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2022-05-11 16:50:26 +0200 |
commit | 4f31b54bfe52c72be9c17c158b38924e6cefcd0f (patch) | |
tree | 6422965c04bc6f0e2366f4a9a938a211ae38fa53 /include | |
parent | 9c0928045ce4b97fc59cb285b7a4b559d21e5da0 (diff) |
Normalize header guard symbol definition
We commonly define the header guard symbol without an explicit value.
Normalize the exceptions.
Done with scripts/clean-header-guards.pl.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20220506134911.2856099-4-armbru@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/exec/memopidx.h | 2 | ||||
-rw-r--r-- | include/tcg/tcg-ldst.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/exec/memopidx.h b/include/exec/memopidx.h index 83bce97874..eb7f1591a3 100644 --- a/include/exec/memopidx.h +++ b/include/exec/memopidx.h @@ -9,7 +9,7 @@ */ #ifndef EXEC_MEMOPIDX_H -#define EXEC_MEMOPIDX_H 1 +#define EXEC_MEMOPIDX_H #include "exec/memop.h" diff --git a/include/tcg/tcg-ldst.h b/include/tcg/tcg-ldst.h index 121a156933..2ba22bd5fe 100644 --- a/include/tcg/tcg-ldst.h +++ b/include/tcg/tcg-ldst.h @@ -23,7 +23,7 @@ */ #ifndef TCG_LDST_H -#define TCG_LDST_H 1 +#define TCG_LDST_H #ifdef CONFIG_SOFTMMU |