summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libdl/test/test_so.c
blob: 09d243c56087c3f5bf53c41cb3920a903063bcac (plain)
1
2
3
4
5
6
7
8
9
10
11

int* test();

int err
=(int)test
;

int* test() {
  write(1,"helo\n",5);
  return &err;
}