diff options
Diffstat (limited to 'Tests/RunCMake/Ninja/hello_with_greeting.c')
-rw-r--r-- | Tests/RunCMake/Ninja/hello_with_greeting.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/RunCMake/Ninja/hello_with_greeting.c b/Tests/RunCMake/Ninja/hello_with_greeting.c new file mode 100644 index 0000000..dbf90e3 --- /dev/null +++ b/Tests/RunCMake/Ninja/hello_with_greeting.c @@ -0,0 +1,7 @@ +#include <greeting.h> + +int main(void) +{ + greeting(); + return 0; +} |