1#include <stdio.h>
2
3#ifdef PROTOTYPES
4int main (void)
5#else
6main()
7#endif
8{
9  printf("Hello from vforked-prog...\n");
10  return 0;
11}
12