Sign in
ara-mdk
/
platform
/
ndk
/
49c73f31702b26be9de9c42a1a4ed033a3d80144
/
.
/
tests
/
device
/
issue28598-linker-global-ref
/
jni
/
liba.cpp
blob: e1ff4433cd95cee5945ba212c6044a316480ccce [
file
] [
log
] [
blame
]
#include
<cstdio>
#include
"liba.h"
int
global
=
0x42
;
void
func
()
{
printf
(
"global = 0x%x (%p)\n"
,
global
,
&
global
);
}