macho/research/custom_loader/a.cc

9 lines
108 B
C++
Raw Normal View History

2023-06-01 17:29:45 +07:00
#include <stdio.h>
void exported_from_c();
int main() {
printf("Hello World\n");
exported_from_c();
}