aboutsummaryrefslogtreecommitdiffstats
path: root/src/ortho/mcode/binary_file-coff.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2015-08-31 16:23:22 +0200
committerTristan Gingold <tgingold@free.fr>2015-08-31 16:23:22 +0200
commit50a40f8823aab990ba9dc17af1e91c47f7f1692a (patch)
tree323fc5ae7abbd869551cf336e09b137377320e7d /src/ortho/mcode/binary_file-coff.adb
parent0cbb67816ad1651b23973d661cc509466382f929 (diff)
downloadghdl-50a40f8823aab990ba9dc17af1e91c47f7f1692a.tar.gz
ghdl-50a40f8823aab990ba9dc17af1e91c47f7f1692a.tar.bz2
ghdl-50a40f8823aab990ba9dc17af1e91c47f7f1692a.zip
mcode/binary_file: rename write routines.
Diffstat (limited to 'src/ortho/mcode/binary_file-coff.adb')
-rw-r--r--src/ortho/mcode/binary_file-coff.adb7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/ortho/mcode/binary_file-coff.adb b/src/ortho/mcode/binary_file-coff.adb
index cf3cba3f4..5115d37e8 100644
--- a/src/ortho/mcode/binary_file-coff.adb
+++ b/src/ortho/mcode/binary_file-coff.adb
@@ -15,13 +15,12 @@
-- along with GCC; see the file COPYING. If not, write to the Free
-- Software Foundation, 59 Temple Place - Suite 330, Boston, MA
-- 02111-1307, USA.
-with Ada.Characters.Latin_1;
with Coff; use Coff;
package body Binary_File.Coff is
- NUL : Character renames Ada.Characters.Latin_1.NUL;
+ NUL : Character renames ASCII.NUL;
- procedure Write_Coff (Fd : GNAT.OS_Lib.File_Descriptor)
+ procedure Write (Fd : GNAT.OS_Lib.File_Descriptor)
is
use GNAT.OS_Lib;
@@ -402,6 +401,6 @@ package body Binary_File.Coff is
raise Program_Error;
end if;
end;
- end Write_Coff;
+ end Write;
end Binary_File.Coff;