mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 12:40:06 +00:00
11 lines
177 B
C
11 lines
177 B
C
/* depends on NoDepC and NoDepE (and hence on NoDepA, NoDepB and */
|
|
/* NoDepF) */
|
|
void NoDepC_func();
|
|
void NoDepE_func();
|
|
|
|
void OneFunc()
|
|
{
|
|
NoDepC_func();
|
|
NoDepE_func();
|
|
}
|