]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gold/testsuite/two_file_test.h
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / gold / testsuite / two_file_test.h
CommitLineData
3bd52c28
ILT
1// two_file_test.h -- a two file test case for gold, header file -*- C++ -*-
2
250d07de 3// Copyright (C) 2006-2021 Free Software Foundation, Inc.
3bd52c28
ILT
4// Written by Ian Lance Taylor <iant@google.com>.
5
6// This file is part of gold.
7
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.
12
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.
17
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.
22
23// This tests references between files. This is the shared header
24// file. See two_file_test_1.cc for details.
25
26extern bool t1();
0700cf32 27extern bool t1a();
3bd52c28
ILT
28extern int t1_2();
29
30extern bool t2();
31extern int v2;
32
33extern bool t3();
34extern int v3;
35
36extern bool t4();
37extern char v4[];
38
39extern bool t5();
40extern char v5[];
41
42extern bool t6();
43
44extern bool t7();
45
46extern bool t8();
47
48extern bool t9();
49
50extern bool t10();
51extern int f10();
52
53extern bool t11();
54extern int f11a();
55extern int f11b(int (*)());
56
57extern bool t12();
58extern bool (*f12())();
59
60extern bool t13();
61inline void f13i() { }
62extern void (*f13())();
f958d5fc
ILT
63
64#define TEST_STRING_CONSTANT "test string constant"
65extern const char* f14();
28ef3179
ILT
66
67#define TEST_WIDE_STRING_CONSTANT L"test wide string constant"
68extern const wchar_t* f15();
03e8f2b2
ILT
69
70extern bool t16();
71extern bool t16a();
d1f003c6
ILT
72
73extern bool t17();
74extern const char* t17data[];
75#define T17_COUNT 5
624f8810
ILT
76
77extern bool t18();
78extern const char* f18(int);