summaryrefslogtreecommitdiff
path: root/elf/tst-deep1mod1.c
blob: cc922e6ea5f05d4956a96582b571ed8b53eefb38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
int
foo (void)
{
  printf ("%s:%s\n", __FILE__, __func__);
  return 1;
}

int
baz (void)
{
  printf ("%s:%s\n", __FILE__, __func__);
  return 20;
}