diff options
author | Alistair Francis <alistair.francis@wdc.com> | 2019-10-02 10:00:40 -0700 |
---|---|---|
committer | Alistair Francis <alistair.francis@wdc.com> | 2019-10-02 12:26:06 -0700 |
commit | 0095a3e8d6fe89ff2bcfc83bbe190c0106dd4111 (patch) | |
tree | 1edf7ada4c73f16b2a4dd63c3831a85d4ef9c651 /string | |
parent | eed005270a472fe97e0a93540387bb8c81a8e36b (diff) | |
download | glibc-0095a3e8d6fe89ff2bcfc83bbe190c0106dd4111.tar glibc-0095a3e8d6fe89ff2bcfc83bbe190c0106dd4111.tar.gz glibc-0095a3e8d6fe89ff2bcfc83bbe190c0106dd4111.tar.bz2 glibc-0095a3e8d6fe89ff2bcfc83bbe190c0106dd4111.zip |
string/endian.h: Restore the __USE_MISC conditionals
Commit 69fd157a3 "time: Add padding for the timespec if required"
caused a breakage in the glibc tests as the endian.h include file was
kept in the networking headers while the __USE_MISC #ifdefs had been
removed. This resulted in namespace violations in the networking
headers.
This patche restores the __USE_MISC conditionals in endian.h to fix the
test failures.
* string/endian.h: Restore the __USE_MISC conditionals.
Diffstat (limited to 'string')
-rw-r--r-- | string/endian.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/string/endian.h b/string/endian.h index 0eb534e434..1a9fe3c97e 100644 --- a/string/endian.h +++ b/string/endian.h @@ -23,12 +23,14 @@ /* Get the definitions of __*_ENDIAN, __BYTE_ORDER, and __FLOAT_WORD_ORDER. */ #include <bits/endian.h> -#define LITTLE_ENDIAN __LITTLE_ENDIAN -#define BIG_ENDIAN __BIG_ENDIAN -#define PDP_ENDIAN __PDP_ENDIAN -#define BYTE_ORDER __BYTE_ORDER +#ifdef __USE_MISC +# define LITTLE_ENDIAN __LITTLE_ENDIAN +# define BIG_ENDIAN __BIG_ENDIAN +# define PDP_ENDIAN __PDP_ENDIAN +# define BYTE_ORDER __BYTE_ORDER +#endif -#ifndef __ASSEMBLER__ +#if defined __USE_MISC && !defined __ASSEMBLER__ /* Conversion interfaces. */ # include <bits/byteswap.h> # include <bits/uintn-identity.h> |