aboutsummaryrefslogtreecommitdiff
path: root/gcc/cil/tests/pinvoke.c
blob: 5b3b16df0e7d0970f58863cebfb2e9c654f39c3d (plain)
1
2
3
4
5
6
7
8
9
10

int testfunc (int a, int b) __attribute__((pinvoke("testlib.so")));

int 
main (int argc, char *argv[])
{
  return testfunc (5, 6);
}