Cider Isn't Darwin Emulation, Really
Something went wrong. Try again.
214 B · 12 lines
C
12345678910111213
#include <stdbool.h>#include <string.h>
bool check_dylib_interposing(){ const char* x = strdup("123"); const char* y = strdup("456"); return ( (strcmp(x, "hello") == 0) && (strcmp(y, "hello") == 0) );}