1
0
Fork 0
qemu/roms/skiboot/external/pflash/config.h
Daniel Baumann ea34ddeea6
Adding upstream version 1:10.0.2+ds.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 14:27:05 +02:00

24 lines
457 B
C

// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
/*
* For CCAN
*
* Copyright 2014 IBM Corp.
*/
#include <endian.h>
#include <byteswap.h>
#define HAVE_TYPEOF 1
#define HAVE_BUILTIN_TYPES_COMPATIBLE_P 1
#if __BYTE_ORDER == __LITTLE_ENDIAN
#define HAVE_BIG_ENDIAN 0
#define HAVE_LITTLE_ENDIAN 1
#else
#define HAVE_BIG_ENDIAN 1
#define HAVE_LITTLE_ENDIAN 0
#endif
#define HAVE_BYTESWAP_H 1
#define HAVE_BSWAP_64 1