Skip to content
Permalink
20003c4988
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) 330 Bytes
#include <unistd.h>
void init (void) __attribute__ ((constructor));
void
__attribute__ ((constructor))
init (void)
{
write (1, "4", 1);
}
void fini (void) __attribute__ ((destructor));
void
__attribute__ ((destructor))
fini (void)
{
write (1, "5", 1);
}
extern int dep1 (void);
int
main (void)
{
return dep1 () != 42;
}