aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/bindusg.ads
diff options
context:
space:
mode:
authorRobert Dewar <dewar@adacore.com>2006-10-31 18:50:47 +0100
committerArnaud Charlet <charlet@gcc.gnu.org>2006-10-31 18:50:47 +0100
commitdb89aef26f919982e402fcd7733dbe719173341c (patch)
tree8a87360456dfa94fb3c45bc6bebb13d1a2339f88 /gcc/ada/bindusg.ads
parentbd8b9b1eae48aaa4350ab55e3175c4394b9e30c9 (diff)
downloadgcc-db89aef26f919982e402fcd7733dbe719173341c.zip
gcc-db89aef26f919982e402fcd7733dbe719173341c.tar.gz
gcc-db89aef26f919982e402fcd7733dbe719173341c.tar.bz2
bindusg.ads, [...]: Change to package and rename procedure as Display...
2006-10-31 Robert Dewar <dewar@adacore.com> * bindusg.ads, bindusg.adb: Change to package and rename procedure as Display, which now ensures that it only outputs usage information once. From-SVN: r118246
Diffstat (limited to 'gcc/ada/bindusg.ads')
-rw-r--r--gcc/ada/bindusg.ads9
1 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ada/bindusg.ads b/gcc/ada/bindusg.ads
index 7c73bd0..e56852b 100644
--- a/gcc/ada/bindusg.ads
+++ b/gcc/ada/bindusg.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 1992,1993,1994 Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2006, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -26,4 +26,9 @@
-- Procedure to generate screen of usage information if no file name present
-procedure Bindusg;
+package Bindusg is
+
+ procedure Display;
+ -- Display binder usage if not already displayed
+
+end Bindusg;