mach-detours/tests/lib_function.c

12 lines
177 B
C
Raw Permalink Normal View History

2025-10-02 20:51:25 +02:00
// Copyright (c) Lysann Tranvouez. All rights reserved.
#include "lib_function.h"
int libFunctionCounter = 0;
int libFunction()
{
libFunctionCounter++;
return 42;
}