mirror of
https://github.com/h3xduck/TripleCross.git
synced 2025-12-19 08:13:08 +08:00
7 lines
96 B
C
7 lines
96 B
C
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
__attribute__((constructor))
|
||
|
|
static void init()
|
||
|
|
{
|
||
|
|
puts("It worked\n");
|
||
|
|
}
|