1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-06-28 15:02:17 +08:00
CMake/Tests/FunctionTest/functionTest.c
2007-12-03 12:44:42 -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;
}