mirror of
https://github.com/reactos/CMake.git
synced 2024-12-12 22:05:57 +00:00
8 lines
85 B
C
8 lines
85 B
C
/* depends on NoDepX */
|
|
void NoDepX_func();
|
|
|
|
void NoDepZ_func()
|
|
{
|
|
NoDepX_func();
|
|
}
|