mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
4494ce4fb4
Update license to use SPDX-License-Identifier instead of verbose license text. Link: http://lkml.kernel.org/r/871s6wcswb.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Reviewed-by: Simon Horman <horms+renesas@verge.net.au> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Cc: Rich Felker <dalias@libc.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
27 lines
423 B
C
27 lines
423 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef __ASM_LIBGCC_H
|
|
#define __ASM_LIBGCC_H
|
|
|
|
#include <asm/byteorder.h>
|
|
|
|
typedef int word_type __attribute__ ((mode (__word__)));
|
|
|
|
#ifdef __BIG_ENDIAN
|
|
struct DWstruct {
|
|
int high, low;
|
|
};
|
|
#elif defined(__LITTLE_ENDIAN)
|
|
struct DWstruct {
|
|
int low, high;
|
|
};
|
|
#else
|
|
#error I feel sick.
|
|
#endif
|
|
|
|
typedef union {
|
|
struct DWstruct s;
|
|
long long ll;
|
|
} DWunion;
|
|
|
|
#endif /* __ASM_LIBGCC_H */
|