From 88f4b6929c26f9240a4b0b7dcc62922f02544a09 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Tue, 18 Oct 2022 17:00:07 +0200 Subject: Introduce , extracted from This allows us to define a generic no-op version of PTR_MANGLE and PTR_DEMANGLE. In the future, we can use PTR_MANGLE and PTR_DEMANGLE unconditionally in C sources, avoiding an unintended loss of hardening due to missing include files or unlucky header inclusion ordering. In i386 and x86_64, we can avoid a dependency in the C code by using the computed constant from . no longer includes these definitions, so there is no cyclic dependency anymore when computing the constants. Reviewed-by: Adhemerval Zanella --- wcsmbs/btowc.c | 2 +- wcsmbs/mbrtoc16.c | 2 +- wcsmbs/mbrtoc8.c | 2 -- wcsmbs/mbrtowc.c | 2 +- wcsmbs/mbsnrtowcs.c | 2 +- wcsmbs/mbsrtowcs_l.c | 2 +- wcsmbs/wcrtomb.c | 2 +- wcsmbs/wcsnrtombs.c | 2 +- wcsmbs/wcsrtombs.c | 2 +- wcsmbs/wctob.c | 2 +- 10 files changed, 9 insertions(+), 11 deletions(-) (limited to 'wcsmbs') diff --git a/wcsmbs/btowc.c b/wcsmbs/btowc.c index 21e52a67f4..7023ec99f1 100644 --- a/wcsmbs/btowc.c +++ b/wcsmbs/btowc.c @@ -24,7 +24,7 @@ #include #include -#include +#include wint_t diff --git a/wcsmbs/mbrtoc16.c b/wcsmbs/mbrtoc16.c index b23d9b0160..f8b029b58a 100644 --- a/wcsmbs/mbrtoc16.c +++ b/wcsmbs/mbrtoc16.c @@ -22,7 +22,7 @@ #include #include -#include +#include #ifndef EILSEQ # define EILSEQ EINVAL diff --git a/wcsmbs/mbrtoc8.c b/wcsmbs/mbrtoc8.c index dd80b5282d..e745a49e09 100644 --- a/wcsmbs/mbrtoc8.c +++ b/wcsmbs/mbrtoc8.c @@ -23,8 +23,6 @@ #include #include -#include - #ifndef EILSEQ # define EILSEQ EINVAL #endif diff --git a/wcsmbs/mbrtowc.c b/wcsmbs/mbrtowc.c index 78d9994f67..46a1cc38df 100644 --- a/wcsmbs/mbrtowc.c +++ b/wcsmbs/mbrtowc.c @@ -22,7 +22,7 @@ #include #include -#include +#include #ifndef EILSEQ # define EILSEQ EINVAL diff --git a/wcsmbs/mbsnrtowcs.c b/wcsmbs/mbsnrtowcs.c index 5860822400..06a1f2d36f 100644 --- a/wcsmbs/mbsnrtowcs.c +++ b/wcsmbs/mbsnrtowcs.c @@ -23,7 +23,7 @@ #include #include -#include +#include #ifndef EILSEQ # define EILSEQ EINVAL diff --git a/wcsmbs/mbsrtowcs_l.c b/wcsmbs/mbsrtowcs_l.c index 0ebc389fdb..526b88e1dd 100644 --- a/wcsmbs/mbsrtowcs_l.c +++ b/wcsmbs/mbsrtowcs_l.c @@ -27,7 +27,7 @@ #include #include -#include +#include #ifndef EILSEQ # define EILSEQ EINVAL diff --git a/wcsmbs/wcrtomb.c b/wcsmbs/wcrtomb.c index c0cce3792f..42690f2efd 100644 --- a/wcsmbs/wcrtomb.c +++ b/wcsmbs/wcrtomb.c @@ -25,7 +25,7 @@ #include #include -#include +#include #ifndef EILSEQ # define EILSEQ EINVAL diff --git a/wcsmbs/wcsnrtombs.c b/wcsmbs/wcsnrtombs.c index 9707f6f4bc..6ba180cdc2 100644 --- a/wcsmbs/wcsnrtombs.c +++ b/wcsmbs/wcsnrtombs.c @@ -22,7 +22,7 @@ #include #include -#include +#include #ifndef EILSEQ # define EILSEQ EINVAL diff --git a/wcsmbs/wcsrtombs.c b/wcsmbs/wcsrtombs.c index b1ac704b28..7db2b181b3 100644 --- a/wcsmbs/wcsrtombs.c +++ b/wcsmbs/wcsrtombs.c @@ -23,7 +23,7 @@ #include #include -#include +#include #ifndef EILSEQ # define EILSEQ EINVAL diff --git a/wcsmbs/wctob.c b/wcsmbs/wctob.c index 573c2c9448..5dfbd7ab7e 100644 --- a/wcsmbs/wctob.c +++ b/wcsmbs/wctob.c @@ -22,7 +22,7 @@ #include #include -#include +#include int -- cgit 1.4.1