mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-07 06:43:00 +03:00
Remove the mention of arcbe ABI to avoid any mislead. ARC big endian ABI is no longer supported. Reviewed-by: Florian Weimer <fweimer@redhat.com>
12 lines
275 B
C
12 lines
275 B
C
#ifndef _BITS_ENDIANNESS_H
|
|
#define _BITS_ENDIANNESS_H 1
|
|
|
|
#ifndef _BITS_ENDIAN_H
|
|
# error "Never use <bits/endian.h> directly; include <endian.h> instead."
|
|
#endif
|
|
|
|
/* Only little-endian ARC is supported. */
|
|
#define __BYTE_ORDER __LITTLE_ENDIAN
|
|
|
|
#endif /* bits/endianness.h */
|