summaryrefslogtreecommitdiffstats
path: root/Tests/CustomCommand/generator.cxx
blob: 0cb70dbab014b65b81e6f289132886472e5e1330 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

int main(int argc, char *argv[])
{
  FILE *fp = fopen(argv[1],"w");
  
  fprintf(fp,"int generated() { return 3; }\n");
  fclose(fp);
}