mirror of
https://gitflic.ru/project/npo_rbs/repka-os_kernel.git
synced 2025-04-18 02:04:28 +00:00
13 lines
320 B
C
13 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;
|
|
}
|