xref: /aosp_15_r20/external/aws-crt-java/src/native/jni.c (revision 3c7ae9de214676c52d19f01067dc1a404272dc11)
1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 #include <jni.h>
6 
7 /* Tell the JNI loader that JNI 1.6 (JDK7) is required */
8 JNIEXPORT
JNI_OnLoad(JavaVM * vm,void * reserved)9 jint JNICALL JNI_OnLoad(JavaVM *vm, void *reserved) {
10     (void)vm;
11     (void)reserved;
12     return JNI_VERSION_1_6;
13 }
14