Add two file test.
[binutils.git] / gold / testsuite / two_file_test.h
blob72c2576cfa5f397f2c2241cd1ff8eececb1d33e6
1 // two_file_test.h -- a two file test case for gold, header file -*- C++ -*-
3 // Copyright 2006, 2007 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
23 // This tests references between files. This is the shared header
24 // file. See two_file_test_1.cc for details.
26 extern bool t1();
27 extern int t1_2();
29 extern bool t2();
30 extern int v2;
32 extern bool t3();
33 extern int v3;
35 extern bool t4();
36 extern char v4[];
38 extern bool t5();
39 extern char v5[];
41 extern bool t6();
43 extern bool t7();
45 extern bool t8();
47 extern bool t9();
49 extern bool t10();
50 extern int f10();
52 extern bool t11();
53 extern int f11a();
54 extern int f11b(int (*)());
56 extern bool t12();
57 extern bool (*f12())();
59 extern bool t13();
60 inline void f13i() { }
61 extern void (*f13())();