summary refs log tree commit diff
path: root/elf/testobj2.c
blob: 5c89d33c8c023c78e0a3f4cc89eb417d3755269e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
int
obj2func1 (int a __attribute__ ((unused)))
{
  return 43;
}

int
obj2func2 (int a)
{
  return obj1func1 (a) + 10;
}