summaryrefslogtreecommitdiff
path: root/Tests/SubDirSpaces/Another Subdir/testfromsubdir.c
blob: 34b6e7a88d5e3e3b9d711098c03bff5b18b38934 (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()
{
  printf("Hello from subdirectory\n");
  secondone();
  pair_stuff();
  vcl_stuff();
  return 0;
}