gdb/testsuite/tui: Introduce check_box_contents
[deliverable/binutils-gdb.git] / libctf / ctf-endian.h
index ec177d1bdd816e4a56a406519b923bfbfaae8243..22aa8b6fba0bba9b72a33972ad73c4606f6632c0 100644 (file)
@@ -1,5 +1,5 @@
 /* Interface to endianness-neutrality functions.
-   Copyright (C) 2019 Free Software Foundation, Inc.
+   Copyright (C) 2019-2020 Free Software Foundation, Inc.
 
    This file is part of libctf.
 
 #include <stdint.h>
 #include "swap.h"
 
-#ifndef HAVE_ENDIAN_H
+#if !defined (HAVE_ENDIAN_H) || !defined (htole64)
 #ifndef WORDS_BIGENDIAN
-# define htole64(x) bswap_identity_64 ((x))
-# define le64toh(x) bswap_identity_64 ((x))
+# define htole64(x) (x)
+# define le64toh(x) (x)
 #else
 # define htole64(x) bswap_64 ((x))
 # define le64toh(x) bswap_64 ((x))
This page took 0.02408 seconds and 4 git commands to generate.