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:
Pascal Obry 2009-04-16 12:20:55 +00:00 committed by Arnaud Charlet
parent 4e0079cc3c
commit bca17d5131
3 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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");

View File

@ -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;