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
25 lines (21 sloc) 301 Bytes
#include <unistd.h>
extern int dep1 (void);
extern int dep2 (void);
extern int dep4 (void);
static void
__attribute__ ((constructor))
init (void)
{
write (1, "3", 1);
}
static void
__attribute__ ((destructor))
fini (void)
{
write (1, "6", 1);
}
int
dep1 (void)
{
return dep4 () - dep2 ();
}