mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 20:49:41 +00:00
8 lines
85 B
C
8 lines
85 B
C
/* depends on NoDepX */
|
|
void NoDepX_func();
|
|
|
|
void NoDepZ_func()
|
|
{
|
|
NoDepX_func();
|
|
}
|