#include <stdio.h>inthowdy(const char*s){returnprintf("howdy:%s\n", s);}void__attribute__((constructor))howdy_ctor(void){printf("I am the libhowdy constructor!\n");}void__attribute__((destructor))howdy_dtor(void){printf("I am the libhowdy destructor!\n");}