mach-detours/tests/test_func.c

10 lines
119 B
C
Raw Normal View History

2025-10-01 23:46:55 +02:00
#include "test_func.h"
int testFunctionCounter = 0;
int testFunction()
{
testFunctionCounter++;
return 42;
}