d5a6c854dd
it was copied to inject byte code generation instead of llvm asm via domestic interop library
9 lines
202 B
C
9 lines
202 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
void assert_c(int value) {
|
|
if (!value) {
|
|
printf("Exception in thread \"main\" java.lang.AssertionError: Assertion failed\n");
|
|
abort();
|
|
}
|
|
} |