summaryrefslogtreecommitdiff
path: root/gcc/ada/5nosinte.ads
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2001-12-23 13:22:17 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>2001-12-23 13:22:17 +0000
commita9a8096c82e4c6042c543cac74ba997302422f68 (patch)
treef376a788dfb2a232d4998a819ad51805a54fd108 /gcc/ada/5nosinte.ads
parent6e17d6064f1ed1e3ddc8bb68389cee028b751936 (diff)
downloadgcc-a9a8096c82e4c6042c543cac74ba997302422f68.tar.gz
* 5nosinte.ads: Get definition of "int" from Interfaces.C.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48288 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/5nosinte.ads')
-rw-r--r--gcc/ada/5nosinte.ads5
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ada/5nosinte.ads b/gcc/ada/5nosinte.ads
index c854786c2ba..1b7d3a813ad 100644
--- a/gcc/ada/5nosinte.ads
+++ b/gcc/ada/5nosinte.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- $Revision: 1.8 $
+-- $Revision: 1.1 $
-- --
-- Copyright (C) 1991-2001 Free Software Foundation, Inc. --
-- --
@@ -36,9 +36,12 @@
-- This is the no tasking version
+with Interfaces.C;
package System.OS_Interface is
pragma Preelaborate;
+ subtype int is Interfaces.C.int;
+
-------------
-- Signals --
-------------