aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/s-memory.ads
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/s-memory.ads')
-rw-r--r--gcc/ada/s-memory.ads8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ada/s-memory.ads b/gcc/ada/s-memory.ads
index 87a129a..a8c1251 100644
--- a/gcc/ada/s-memory.ads
+++ b/gcc/ada/s-memory.ads
@@ -56,10 +56,10 @@ package System.Memory is
-- memory. The implementation of this routine is guaranteed to be
-- task safe, and also aborts are deferred if necessary.
--
- -- If size_t is set to size_t'Last on entry, then a Storage_Error
+ -- If Size is set to size_t'Last on entry, then a Storage_Error
-- exception is raised with a message "object too large".
--
- -- If size_t is set to zero on entry, then a minimal (but non-zero)
+ -- If Size is set to zero on entry, then a minimal (but non-zero)
-- size block is allocated.
--
-- Note: this is roughly equivalent to the standard C malloc call
@@ -87,10 +87,10 @@ package System.Memory is
-- routine is guaranteed to be task safe, and also aborts are
-- deferred as necessary.
--
- -- If size_t is set to size_t'Last on entry, then a Storage_Error
+ -- If Size is set to size_t'Last on entry, then a Storage_Error
-- exception is raised with a message "object too large".
--
- -- If size_t is set to zero on entry, then a minimal (but non-zero)
+ -- If Size is set to zero on entry, then a minimal (but non-zero)
-- size block is allocated.
--
-- Note: this is roughly equivalent to the standard C realloc call