initial commit

This commit is contained in:
Lysann Tranvouez 2025-09-27 23:12:16 +02:00
commit c0975230fe
10 changed files with 302 additions and 0 deletions

8
mach_detours.c Normal file
View file

@ -0,0 +1,8 @@
#include "mach_detours.h"
#include <stdio.h>
void hello(void)
{
printf("Hello, World!\n");
}