2023-07-19 13:39:50 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2023-07-19 14:24:34 -04:00
|
|
|
/*
|
|
|
|
* We need:
|
|
|
|
* __attribute__((constructor))
|
|
|
|
* To indicate that this function will be the entry point once injected.
|
|
|
|
*/
|
2023-07-19 13:39:50 -04:00
|
|
|
__attribute__((constructor)) void load(void) {
|
|
|
|
printf("hl-cheat loaded!\n");
|
|
|
|
}
|