1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-06-26 22:37:32 +08:00
CMake/Tests/ReturnTest/returnTest.c
2008-01-23 10:29:21 -05:00

8 lines
137 B
C

#include <stdio.h>
int main(int argc, char* argv[])
{
printf("Running command: %s with %d arguments\n", argv[0], argc);
return 0;
}