f389ebf687
according to new mangling scheme
11 lines
162 B
C
11 lines
162 B
C
extern void *resolve_symbol(const char*);
|
|
|
|
int
|
|
run_test() {
|
|
int (*bool_yes)() = resolve_symbol("kfun:bool_yes()");
|
|
|
|
if (!bool_yes()) return 1;
|
|
|
|
return 0;
|
|
}
|