mirror of
https://github.com/LuckfoxTECH/luckfox-pico.git
synced 2026-01-18 11:38:31 +01:00
14 lines
320 B
C
14 lines
320 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <jvmti.h>
|
|
|
|
int main(void)
|
|
{
|
|
JavaVM jvm __attribute__((unused));
|
|
jvmtiEventCallbacks cb __attribute__((unused));
|
|
jvmtiCapabilities caps __attribute__((unused));
|
|
jvmtiJlocationFormat format __attribute__((unused));
|
|
jvmtiEnv jvmti __attribute__((unused));
|
|
|
|
return 0;
|
|
}
|