diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-04-08 07:05:38 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-04-08 07:05:38 +0000 |
commit | 9041f5deeaede6b5bd0b01ce28402187f59cf520 (patch) | |
tree | e961c9d18495c03ab6e78a2775f4a1338d2d9933 /gcc/ada | |
parent | 0daacafc500dd1b0d075d792f3a804fe86bc98cb (diff) | |
download | ppe42-gcc-9041f5deeaede6b5bd0b01ce28402187f59cf520.tar.gz ppe42-gcc-9041f5deeaede6b5bd0b01ce28402187f59cf520.zip |
(malloc32, realloc32): New functions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@134074 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada')
-rw-r--r-- | gcc/ada/s-crtl.ads | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gcc/ada/s-crtl.ads b/gcc/ada/s-crtl.ads index 4ab0e7d606d..880780b0078 100644 --- a/gcc/ada/s-crtl.ads +++ b/gcc/ada/s-crtl.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 2003-2007, Free Software Foundation, Inc. -- +-- Copyright (C) 2003-2008, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -133,6 +133,11 @@ package System.CRTL is function malloc (Size : size_t) return System.Address; pragma Import (C, malloc, "malloc"); + function malloc32 (Size : size_t) return System.Address; + pragma Import (C, malloc32, "malloc"); + -- An uncalled alias for malloc except on 64bit systems needing to + -- allocate 32bit memory. + procedure memcpy (S1 : System.Address; S2 : System.Address; N : size_t); pragma Import (C, memcpy, "memcpy"); @@ -152,6 +157,12 @@ package System.CRTL is (Ptr : System.Address; Size : size_t) return System.Address; pragma Import (C, realloc, "realloc"); + function realloc32 + (Ptr : System.Address; Size : size_t) return System.Address; + pragma Import (C, realloc32, "realloc"); + -- An uncalled alias for realloc except on 64bit systems needing to + -- allocate 32bit memory. + procedure rewind (stream : FILEs); pragma Import (C, rewind, "rewind"); |