diff options
Diffstat (limited to 'gcc/ada/a-textio.adb')
-rw-r--r-- | gcc/ada/a-textio.adb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/ada/a-textio.adb b/gcc/ada/a-textio.adb index b61ebd3c80a..98766ce9bf3 100644 --- a/gcc/ada/a-textio.adb +++ b/gcc/ada/a-textio.adb @@ -35,6 +35,7 @@ with Ada.Streams; use Ada.Streams; with Interfaces.C_Streams; use Interfaces.C_Streams; with System; with System.File_IO; +with System.CRTL; with Unchecked_Conversion; with Unchecked_Deallocation; @@ -51,6 +52,8 @@ package body Ada.Text_IO is function To_TIO is new Unchecked_Conversion (FCB.File_Mode, File_Mode); use type FCB.File_Mode; + use type System.CRTL.size_t; + ------------------- -- AFCB_Allocate -- ------------------- |