| Nico Huber | 5e9b1b5 | 2016-10-08 22:09:33 +0200 | [diff] [blame] | 1 | -- |
| 2 | -- Copyright (C) 2015 secunet Security Networks AG |
| 3 | -- |
| 4 | -- This program is free software; you can redistribute it and/or modify |
| 5 | -- it under the terms of the GNU General Public License as published by |
| Nico Huber | aab715f | 2016-10-18 00:22:25 +0200 | [diff] [blame] | 6 | -- the Free Software Foundation; either version 2 of the License, or |
| 7 | -- (at your option) any later version. |
| Nico Huber | 5e9b1b5 | 2016-10-08 22:09:33 +0200 | [diff] [blame] | 8 | -- |
| 9 | -- This program is distributed in the hope that it will be useful, |
| 10 | -- but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | -- GNU General Public License for more details. |
| 13 | -- |
| 14 | |
| 15 | with Ada.Text_IO; |
| 16 | |
| 17 | package HW.Debug_Sink is |
| 18 | |
| 19 | procedure Put (Item : String) renames Ada.Text_IO.Put; |
| 20 | procedure Put_Char (Item : Character) renames Ada.Text_IO.Put; |
| 21 | procedure New_Line (Spacing : Ada.Text_IO.Positive_Count := 1) |
| 22 | renames Ada.Text_IO.New_Line; |
| 23 | |
| 24 | end HW.Debug_Sink; |