mach-detours/tests/test_func.c

12 lines
177 B
C
Raw Normal View History

2025-10-01 23:55:17 +02:00
// Copyright (c) Lysann Tranvouez. All rights reserved.
2025-10-01 23:46:55 +02:00
#include "test_func.h"
int testFunctionCounter = 0;
int testFunction()
{
testFunctionCounter++;
return 42;
}