summaryrefslogtreecommitdiff
path: root/Tests/SubDir/ThirdSubDir/testfromauxsubdir.c
blob: 3f6a20634ed993c255e801ff49803c237d463e9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>

void secondone();
void pair_stuff();
void vcl_stuff();

int main()
{
  printf("Hello from subdirectory\n");
  secondone();
  pair_stuff();
  pair_p_stuff();
  vcl_stuff();
  return 0;
}