summaryrefslogtreecommitdiff
path: root/Tests/Wrapping/Wrap.c
blob: 0a1ff501e815b527d9829c5d94d5f4030bee4091 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <stdio.h>

#ifdef __CLASSIC_C__
int main(argc, argv)
  int argc;
  char ** argv;
#else
int main(int argc, const char* argv[])
#endif
{
  FILE* fout = fopen(argv[argc-1], "w");
  printf("Wrap creating \"%s\"\n", argv[argc-1]);
  if(fout)
    {
    fprintf(fout, "int foo() { return 0; }\n");
    fclose(fout);
    }
  else
    {
    return -1;
    }
  return 0;
}