Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
run-make-fulldeps
/
extern-fn-with-union
/
ctest.c
blob: 86cb64537236e1611f877a64a32a1b52d06c5904 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<stdint.h>
typedef
union
TestUnion
{
uint64_t
bits
;
}
TestUnion
;
uint64_t
give_back
(
TestUnion
tu
)
{
return
tu
.
bits
;
}