CMake/Tests/RunCMake/Ninja/hello_with_two_greetings.c

10 lines
106 B
C

#include <greeting.h>
#include <greeting2.h>
int main(void)
{
greeting();
greeting2();
return 0;
}