Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- static void __attribute__ ((constructor)) constructor();
- static void constructor(){
- printf("oi\n");
- }
- static void __attribute__ ((destructor)) destructor();
- static void destructor(){
- printf("tchau\n");
- }
Advertisement
Add Comment
Please, Sign In to add comment