1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-06-26 22:37:32 +08:00
2002-11-21 08:19:05 -05:00

12 lines
158 B
C

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