blob: 7a56f82dbc318744fbd4185637de0fb52eb7cf00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
$NetBSD: patch-am,v 1.1 2005/10/20 17:43:29 wiz Exp $
--- posix-supplement_to_ada_io.adb.orig 2002-10-24 02:03:52.000000000 -0600
+++ posix-supplement_to_ada_io.adb
@@ -113,6 +113,7 @@ package body POSIX.Supplement_to_Ada_IO
F : System_File_Type;
Ret : int;
+ pragma Warnings (Off, Ret);
begin
F := To_SFT (File);
@@ -126,6 +127,7 @@ package body POSIX.Supplement_to_Ada_IO
F : System_File_Type;
Ret : int;
+ pragma Warnings (Off, Ret);
begin
F := To_SFT (File);
|