blob: 2ad60233a7299131a6af51bc8f47f7be4d4616bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
int undef_symbol;
void undef_func(int param) {
undef_symbol = 100;
}
static int hello_init(void) {
// Do nothing
return 0;
}
static void hello_exit(void) {
// Do nothing
}
|