mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-18 08:51:52 +08:00
12 lines
165 B
C
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();
|
|
}
|
|
}
|