dlopen_weak.c 163 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11
#include "dlopen_weak_deps.h"

__attribute__((weak)) int TestFunction(int input)
{
	return input % 2;
}

int TestNumber(int input)
{
	return TestNumber2(input);
}