summaryrefslogtreecommitdiff
path: root/Tests/SimpleExclude/dirC/dirA/t4.c
blob: 7c36ca927a9af2e7283e5e57df5f1d63747e0e11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>

#ifdef __CLASSIC_C__
int main()
{
  int ac;
  char*av[];
#else
  int main(int ac, char*av[])
    {
#endif
    if(ac > 1000){return *av[0];}
    printf("This is T4. This one should work.\n");
    return 0;
    }