mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-09 15:20:56 -06:00
10 lines
150 B
C
10 lines
150 B
C
#include <stdio.h>
|
|
|
|
main(int argc, char *argv[])
|
|
{
|
|
FILE *fp = fopen(argv[1],"w");
|
|
|
|
fprintf(fp,"int wrapped() { return 5; }\n");
|
|
fclose(fp);
|
|
}
|