aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/mlib-tgt-vms-ia64.adb
diff options
context:
space:
mode:
authorDoug Rupp <rupp@adacore.com>2005-02-10 14:49:15 +0100
committerArnaud Charlet <charlet@gcc.gnu.org>2005-02-10 14:49:15 +0100
commit70ad376e2f4f6cc950fb543f87e96e42d40c72d9 (patch)
tree5dc2dd33c332df90154ebf5f0909edf17dcd72d9 /gcc/ada/mlib-tgt-vms-ia64.adb
parentedc7394cad7cf7e7a656a91b23694150dc84dae3 (diff)
downloadgcc-70ad376e2f4f6cc950fb543f87e96e42d40c72d9.zip
gcc-70ad376e2f4f6cc950fb543f87e96e42d40c72d9.tar.gz
gcc-70ad376e2f4f6cc950fb543f87e96e42d40c72d9.tar.bz2
gnatchop.adb (dup, [...]): Reference via System.CRTL.
2005-02-09 Doug Rupp <rupp@adacore.com> * gnatchop.adb (dup, dup2), g-dirope.adb (closedir, opendir, rmdir): Reference via System.CRTL. * gnatlbr.adb (mkdir), mlib-tgt-vms-ia64.adb (popen, plose): Import with decc$ prefix. * s-crtl.ads (closdir, dup, dup2, opendir, rmdir): Import. From-SVN: r94807
Diffstat (limited to 'gcc/ada/mlib-tgt-vms-ia64.adb')
-rw-r--r--gcc/ada/mlib-tgt-vms-ia64.adb6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/mlib-tgt-vms-ia64.adb b/gcc/ada/mlib-tgt-vms-ia64.adb
index cad8ae1..e921566 100644
--- a/gcc/ada/mlib-tgt-vms-ia64.adb
+++ b/gcc/ada/mlib-tgt-vms-ia64.adb
@@ -7,7 +7,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 2004, Free Software Foundation, Inc. --
+-- Copyright (C) 2004-2005 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- --
@@ -77,10 +77,10 @@ package body MLib.Tgt is
------------------------------
function Popen (Command, Mode : System.Address) return System.Address;
- pragma Import (C, Popen);
+ pragma Import (C, Popen, "decc$popen");
function Pclose (File : System.Address) return Integer;
- pragma Import (C, Pclose);
+ pragma Import (C, Pclose, "decc$pclose");
---------------------
-- Archive_Builder --