Revision c9a7f3135e06147d663e98d910b65a38595f378b authored by Brad King on 28 February 2019, 16:05:31 UTC, committed by Brad King on 28 February 2019, 16:05:31 UTC
1 parent 00c1120
Raw File
B.java
class B
{
  public B()
    {
    }

    public native void printName();

    static {
        try {

            System.loadLibrary("B");

        } catch (UnsatisfiedLinkError e) {
            System.err.println("Native code library failed to load.\n" + e);
            System.exit(1);
        }
    }
}
back to top