repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fs/reiserfs/journal.c: change return type of dirty_one_transaction
[linux/fpc-iii.git]
/
arch
/
sh
/
lib
/
libgcc.h
blob
58ada9e8f1c2bd5bba23c19c0367cec08991fdba
1
/* SPDX-License-Identifier: GPL-2.0 */
2
3
#ifndef __ASM_LIBGCC_H
4
#define __ASM_LIBGCC_H
5
6
#include <asm/byteorder.h>
7
8
typedef
int
word_type
__attribute__
((
mode
(
__word__
)));
9
10
#ifdef __BIG_ENDIAN
11
struct
DWstruct
{
12
int
high
,
low
;
13
};
14
#elif defined(__LITTLE_ENDIAN)
15
struct
DWstruct
{
16
int
low
,
high
;
17
};
18
#else
19
#error I feel sick.
20
#endif
21
22
typedef
union
{
23
struct
DWstruct s
;
24
long long
ll
;
25
}
DWunion
;
26
27
#endif
/* __ASM_LIBGCC_H */