1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-18 08:51:52 +08:00
Files
CMake/Tests/LinkLineOrder/NoDepF.c
2023-10-26 09:20:45 -04:00

12 lines
165 B
C

/* depends on NoDepE */
void NoDepE_func(void);
void NoDepF_func(void)
{
static int firstcall = 1;
if (firstcall) {
firstcall = 0;
NoDepE_func();
}
}