Skip to content
Permalink
1a511d3105
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
23 lines (19 sloc) 240 Bytes
#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;
}