1ee3aad419712c8d9648695a8c716560329599624jochen@chromium.org// Copyright (c) 2012 Google Inc. All rights reserved.
2ee3aad419712c8d9648695a8c716560329599624jochen@chromium.org// Use of this source code is governed by a BSD-style license that can be
3ee3aad419712c8d9648695a8c716560329599624jochen@chromium.org// found in the LICENSE file.
4ee3aad419712c8d9648695a8c716560329599624jochen@chromium.org
5ee3aad419712c8d9648695a8c716560329599624jochen@chromium.org#include <stdio.h>
6ee3aad419712c8d9648695a8c716560329599624jochen@chromium.org
7ee3aad419712c8d9648695a8c716560329599624jochen@chromium.orgextern void func(void);
8ee3aad419712c8d9648695a8c716560329599624jochen@chromium.orgextern void subdir1_func(void);
9ee3aad419712c8d9648695a8c716560329599624jochen@chromium.orgextern void subdir2_func(void);
10ee3aad419712c8d9648695a8c716560329599624jochen@chromium.org
11822a998ac082353c083c063d78c796662f179543torne@chromium.orgint main(void)
12ee3aad419712c8d9648695a8c716560329599624jochen@chromium.org{
13ee3aad419712c8d9648695a8c716560329599624jochen@chromium.org  printf("Hello from prog3.c\n");
14ee3aad419712c8d9648695a8c716560329599624jochen@chromium.org  func();
15ee3aad419712c8d9648695a8c716560329599624jochen@chromium.org  subdir1_func();
16ee3aad419712c8d9648695a8c716560329599624jochen@chromium.org  subdir2_func();
17ee3aad419712c8d9648695a8c716560329599624jochen@chromium.org  return 0;
18ee3aad419712c8d9648695a8c716560329599624jochen@chromium.org}
19