mirror of
https://github.com/reactos/CMake.git
synced 2024-12-21 03:00:59 +00: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);
|
||
|
}
|