aboutsummaryrefslogtreecommitdiffstats
path: root/src/grt/grt-astdio.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/grt/grt-astdio.adb')
-rw-r--r--src/grt/grt-astdio.adb6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/grt/grt-astdio.adb b/src/grt/grt-astdio.adb
index 456d024ac..a572dd3cc 100644
--- a/src/grt/grt-astdio.adb
+++ b/src/grt/grt-astdio.adb
@@ -56,6 +56,12 @@ package body Grt.Astdio is
Put (Stream, Nl);
end New_Line;
+ procedure Put_Line (Stream : FILEs; Str : String) is
+ begin
+ Put (Stream, Str);
+ New_Line (Stream);
+ end Put_Line;
+
procedure Put (Str : String)
is
S : size_t;