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; }