mirror of
https://github.com/h3xduck/TripleCross.git
synced 2025-12-28 04:13:08 +08:00
10 lines
180 B
C
10 lines
180 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <syslog.h>
|
|
|
|
__attribute__((constructor))
|
|
static void init()
|
|
{
|
|
printf("It worked\n");
|
|
syslog(LOG_CRIT, "Library called\n");
|
|
} |