summaryrefslogtreecommitdiffstats
path: root/Tests/CustomCommand/wrapper.cxx
blob: b15f90382f992c0c495dfdbeea66e4f30c11cfc4 (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 wrapped() { return 5; }\n");
  fclose(fp);
}