mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 22:11:30 +08:00
s-crtl.ads, [...]: Minor code clean-up.
2009-04-16 Pascal Obry <obry@adacore.com> * s-crtl.ads, s-os_lib.adb: Minor code clean-up. From-SVN: r146175
This commit is contained in:
parent
4e0079cc3c
commit
bca17d5131
@ -1,3 +1,7 @@
|
||||
2009-04-16 Pascal Obry <obry@adacore.com>
|
||||
|
||||
* s-crtl.ads, s-os_lib.adb: Minor code clean-up.
|
||||
|
||||
2009-04-16 Thomas Quinot <quinot@adacore.com>
|
||||
|
||||
* snames.ads-tmpl (Name_Defined): New predefined name for use by the
|
||||
|
@ -188,7 +188,7 @@ package System.CRTL is
|
||||
pragma Import (C, ungetc, "ungetc");
|
||||
|
||||
function unlink (filename : chars) return int;
|
||||
pragma Import (C, unlink, "unlink");
|
||||
pragma Import (C, unlink, "__gnat_unlink");
|
||||
|
||||
function open (filename : chars; oflag : int) return int;
|
||||
pragma Import (C, open, "open");
|
||||
|
@ -846,12 +846,8 @@ package body System.OS_Lib is
|
||||
|
||||
procedure Delete_File (Name : Address; Success : out Boolean) is
|
||||
R : Integer;
|
||||
|
||||
function unlink (A : Address) return Integer;
|
||||
pragma Import (C, unlink, "__gnat_unlink");
|
||||
|
||||
begin
|
||||
R := unlink (Name);
|
||||
R := System.CRTL.unlink (Name);
|
||||
Success := (R = 0);
|
||||
end Delete_File;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user