20 lines
305 B
Java
Raw Normal View History

2018-04-23 21:13:27 +02:00
class D
{
public D()
{
}
public native void printName();
static {
try {
System.loadLibrary("D");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load.\n" + e);
System.exit(1);
}
}
}