Sign in
android
/
platform
/
ndk
/
06c762d797782f574e40a956613c4e19c504b6c1
/
.
/
tests
/
device
/
bitfield
/
jni
/
header.h
blob: 6ca10366bdda53448d83b16e963749772c987a45 [
file
] [
log
] [
blame
]
struct
s
{
unsigned
int
x
:
1
;
unsigned
int
unused
:
15
;
unsigned
short
y
;
};
union
u
{
struct
s s
;
volatile
int
i
;
};
void
foo
(
union
u
*
ptr
,
int
flag
);