diff options
Diffstat (limited to 'gdb/testsuite/gdb.ada/static-link/pck.ads')
-rw-r--r-- | gdb/testsuite/gdb.ada/static-link/pck.ads | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.ada/static-link/pck.ads b/gdb/testsuite/gdb.ada/static-link/pck.ads index e241408..1c52820 100644 --- a/gdb/testsuite/gdb.ada/static-link/pck.ads +++ b/gdb/testsuite/gdb.ada/static-link/pck.ads @@ -1,4 +1,4 @@ --- Copyright 2023-2024 Free Software Foundation, Inc. +-- Copyright 2023-2025 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by @@ -13,6 +13,9 @@ -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. +with System; package Pck is Some_Value : Integer := 3; + + procedure Do_Nothing (A : System.Address); end Pck; |