]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/limited-length.c
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / limited-length.c
CommitLineData
a0c07915
AB
1/* This testcase is part of GDB, the GNU debugger.
2
1d506c26 3 Copyright (C) 2023-2024 Free Software Foundation, Inc.
a0c07915
AB
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17
18int large_1d_array[] = {
19 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
20 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
21 20, 21, 22, 23, 24, 25, 26, 27, 28, 29,
22 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,
23 40, 41, 42, 43, 44, 45, 46, 47, 48, 49,
24 50, 51, 52, 53, 54, 55, 56, 57, 58, 59,
25 60, 61, 62, 63, 64, 65, 66, 67, 68, 69,
26 70, 71, 72, 73, 74, 75, 76, 77, 78, 79,
27 80, 81, 82, 83, 84, 85, 86, 87, 88, 89,
28 90, 91, 92, 93, 94, 95, 96, 97, 98, 99
29};
30
31int large_2d_array[][10] = {
32 {0, 1, 2, 3, 4, 5, 6, 7, 8, 9},
33 {10, 11, 12, 13, 14, 15, 16, 17, 18, 19},
34 {20, 21, 22, 23, 24, 25, 26, 27, 28, 29},
35 {30, 31, 32, 33, 34, 35, 36, 37, 38, 39},
36 {40, 41, 42, 43, 44, 45, 46, 47, 48, 49},
37 {50, 51, 52, 53, 54, 55, 56, 57, 58, 59},
38 {60, 61, 62, 63, 64, 65, 66, 67, 68, 69},
39 {70, 71, 72, 73, 74, 75, 76, 77, 78, 79},
40 {80, 81, 82, 83, 84, 85, 86, 87, 88, 89},
41 {90, 91, 92, 93, 94, 95, 96, 97, 98, 99}
42};
43
44int
45main ()
46{
47 return 0;
48}