repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixes for host gcc 4.6.1
[zpugcc/jano.git]
/
toolchain
/
gcc
/
libjava
/
testsuite
/
libjava.jni
/
register.java
blob
0c0cbf628911a2effdae7d6c3e198f3b668072c7
1
// register.java - Test RegisterNatives.
2
3
public class
register
4
{
5
static
6
{
7
System
.
loadLibrary
(
"register"
);
8
}
9
10
public static native int
doit
(
int
z
);
11
12
public static void
main
(
String
[]
args
)
13
{
14
System
.
out
.
println
(
doit
(
24
));
15
}
16
}