blob: fa029220dbd93630163d3fdeb029e0cf8ead0b05 [file] [log] [blame]
Nico Huber5e9b1b52016-10-08 22:09:33 +02001--
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 Huberaab715f2016-10-18 00:22:25 +02006-- the Free Software Foundation; either version 2 of the License, or
7-- (at your option) any later version.
Nico Huber5e9b1b52016-10-08 22:09:33 +02008--
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
15with Ada.Text_IO;
16
17package 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
24end HW.Debug_Sink;