+2001-03-19 Andrew Cagney <ac131313@redhat.com>
+
+ * defs.h (free): Move declaration from here.
+ * utils.c (free): To here.
+ (xfree): Document as the only call to free().
+ * config/pa/xm-hppah.h (free): Delete declaration.
+
2001-03-19 Kevin Buettner <kevinb@redhat.com>
* config/ia64/linux.mh (NATDEPFILES): Add proc-service.o to
extern void *malloc (size_t);
extern void *realloc (void *, size_t);
-
-extern void free (void *);
extern PTR realloc ();
#endif
-#ifdef NEED_DECLARATION_FREE
-extern void free ();
-#endif
-
#endif /* MALLOC_INCOMPATIBLE */
/* Various possibilities for alloca. */
#include <readline/readline.h>
+#ifndef MALLOC_INCOMPATIBLE
+#ifdef NEED_DECLARATION_FREE
+extern void free ();
+#endif
+#endif
+
#undef XMALLOC
#define XMALLOC(TYPE) ((TYPE*) xmalloc (sizeof (TYPE)))
xfree (void *ptr)
{
if (ptr != NULL)
- free (ptr);
+ free (ptr); /* NOTE: GDB's only call to free() */
}
\f