Files
SnakeAppleSecurityFiles/IV. Dylibs/custom/lib2.c
Karmaz95 ada7094c2b
2024-01-17 12:00:56 +01:00

11 lines
251 B
C

//clang -dynamiclib lib2.c -o $PWD/lib2.dylib
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
void callLib2Function() {
printf("Now we are in lib2.dylib.\n");
printf("Press enter to back to executable code...\n");
getchar();
}