summaryrefslogtreecommitdiff
path: root/example/lib.c
blob: 6622e56b0084aeca445277b730b22e9251e440c0 (plain)
1
2
3
4
5
6
7
#include <unistd.h>
#include <stdio.h>

void __attribute__((constructor)) lib_entry()
{
    printf("Injected into %li\n", getpid());
}