summaryrefslogtreecommitdiff
path: root/gcc/ada/g-socthi-mingw.adb
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2010-06-17 12:52:58 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2010-06-17 12:52:58 +0000
commit41e997c2d43189e04a239994b430fd7e27c32759 (patch)
treef87336532d052dcfa0356d5af84921c36f2cb0ae /gcc/ada/g-socthi-mingw.adb
parent6cd460aa8dcb65ea8454257720dffd2258689ef8 (diff)
downloadgcc-41e997c2d43189e04a239994b430fd7e27c32759.tar.gz
2010-06-17 Eric Botcazou <ebotcazou@adacore.com>
* g-socthi-mingw.adb (C_Recvmsg): Add 'use type' clause for C.size_t; (C_Sendmsg): Likewise. 2010-06-17 Thomas Quinot <quinot@adacore.com> * sem_res.adb: Update comments. 2010-06-17 Vincent Celier <celier@adacore.com> * back_end.adb (Scan_Compiler_Arguments): Process last argument. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@160906 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/g-socthi-mingw.adb')
-rw-r--r--gcc/ada/g-socthi-mingw.adb4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/ada/g-socthi-mingw.adb b/gcc/ada/g-socthi-mingw.adb
index ba4a3deb775..23bab2c9a74 100644
--- a/gcc/ada/g-socthi-mingw.adb
+++ b/gcc/ada/g-socthi-mingw.adb
@@ -271,6 +271,8 @@ package body GNAT.Sockets.Thin is
Msg : System.Address;
Flags : C.int) return System.CRTL.ssize_t
is
+ use type C.size_t;
+
Res : C.int;
Count : C.int := 0;
@@ -408,6 +410,8 @@ package body GNAT.Sockets.Thin is
Msg : System.Address;
Flags : C.int) return System.CRTL.ssize_t
is
+ use type C.size_t;
+
Res : C.int;
Count : C.int := 0;