mach-detours/tests/test_func.c
2025-10-01 23:46:55 +02:00

9 lines
119 B
C

#include "test_func.h"
int testFunctionCounter = 0;
int testFunction()
{
testFunctionCounter++;
return 42;
}