aboutsummaryrefslogtreecommitdiff
path: root/elf/dep3.c
blob: 3df62820097d35703b0bee541935dd70fa87c9be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <unistd.h>

extern int dep3 (void);

static void
__attribute__ ((constructor))
init (void)
{
  write (1, "0", 1);
}

static void
__attribute__ ((destructor))
fini (void)
{
  write (1, "9\n", 2);
}

int
dep3 (void)
{
  return 42;
}
-notes-qsort Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/missing
AgeCommit message (Expand)AuthorFilesLines
1999-05-0319990502 sourceware importbinu_ss_19990502Richard Henderson1-0/+190