aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/alloc.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/gdb/alloc.c b/gdb/alloc.c
index 60098c7..c6234e9 100644
--- a/gdb/alloc.c
+++ b/gdb/alloc.c
@@ -44,10 +44,7 @@
consistent semantics and guard against typical memory management
problems. */
-/* NOTE: These are declared using PTR to ensure consistency with
- "libiberty.h". xfree() is GDB local. */
-
-PTR /* ARI: PTR */
+void *
xmalloc (size_t size)
{
void *val;
@@ -64,8 +61,8 @@ xmalloc (size_t size)
return val;
}
-PTR /* ARI: PTR */
-xrealloc (PTR ptr, size_t size) /* ARI: PTR */
+void *
+xrealloc (void *ptr, size_t size)
{
void *val;
@@ -84,7 +81,7 @@ xrealloc (PTR ptr, size_t size) /* ARI: PTR */
return val;
}
-PTR /* ARI: PTR */
+void *
xcalloc (size_t number, size_t size)
{
void *mem;