diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-02-15 09:33:28 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-02-15 09:33:28 +0000 |
commit | 126d39beacc8e4e8e7610769b769e89cd3dbdc3d (patch) | |
tree | 6baec71cd2a00e2e6f302870bbd4da99e3a1031f /gcc/ada/a-coteio.ads | |
parent | ff9e4293942967681e8de9c0958c38c1771d4457 (diff) | |
download | gcc-126d39beacc8e4e8e7610769b769e89cd3dbdc3d.tar.gz |
2006-02-13 Robert Dewar <dewar@adacore.com>
* a-ticoio.ads, a-ticoio.adb: Add use clause (moved here from spec)
* a-coteio.ads, a-lcteio.ads, a-llctio.ads, a-scteio.ads: New files.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@111038 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/a-coteio.ads')
-rwxr-xr-x | gcc/ada/a-coteio.ads | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gcc/ada/a-coteio.ads b/gcc/ada/a-coteio.ads new file mode 100755 index 00000000000..72fc34c16e5 --- /dev/null +++ b/gcc/ada/a-coteio.ads @@ -0,0 +1,24 @@ +------------------------------------------------------------------------------ +-- -- +-- GNAT RUN-TIME COMPONENTS -- +-- -- +-- A D A . C O M P L E X _ T E X T _ I O -- +-- -- +-- S p e c -- +-- -- +-- This specification is adapted from the Ada Reference Manual for use with -- +-- GNAT. In accordance with the copyright of that document, you can freely -- +-- copy and modify this specification, provided that if you redistribute a -- +-- modified version, any changes that you have made are clearly indicated. -- +-- -- +------------------------------------------------------------------------------ + +-- Ada 2005 AI-328 + +with Ada.Text_IO.Complex_IO; +with Ada.Numerics.Complex_Types; + +pragma Elaborate_All (Ada.Text_IO.Complex_IO); + +package Ada.Complex_Text_IO is + new Ada.Text_IO.Complex_IO (Ada.Numerics.Complex_Types); |