Sign in
fuchsia
/
third_party
/
llvm-test-suite
/
refs/tags/llvmorg-12.0.1
/
.
/
SingleSource
/
Regression
/
C
/
ConstructorDestructorAttributes.c
blob: 1a5fb9c4de0f0ff96b44348ad3237355a9a382a9 [
file
] [
log
] [
blame
]
#include
<stdio.h>
void
ctor
()
__attribute__
((
constructor
));
void
ctor
()
{
printf
(
"Create!\n"
);
}
void
dtor
()
__attribute__
((
destructor
));
void
dtor
()
{
printf
(
"Create!\n"
);
}
int
main
()
{
return
0
;
}