summaryrefslogtreecommitdiffstats
path: root/Tests/SubDir/AnotherSubdir/testfromsubdir.c
blob: 5e7214034d5c0f6c38453ed2e0e47305014418bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>

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

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