Remove v850e sanitization
[deliverable/binutils-gdb.git] / mmalloc / mmalloc.h
index a4a6dd8be6d5dd702724dbdd1957695336800b90..34e3898e959ec3133652683da6ee55b3334155fb 100644 (file)
@@ -1,8 +1,12 @@
 #ifndef MMALLOC_H
 #define MMALLOC_H 1
 
-#ifdef STDC_HEADERS
-#include <stddef.h>
+/*  FIXME:  If <stddef.h> doesn't exist, you'll need to do something
+            to define size_t before including this file.  Like upgrading
+            to a system with an ANSI C environment. */
+
+#ifdef HAVE_STDDEF_H
+#  include <stddef.h>
 #endif
 
 #include "ansidecl.h"
@@ -36,6 +40,8 @@ extern PTR mvalloc PARAMS ((PTR, size_t));
 
 extern int mmcheck PARAMS ((PTR, void (*) (void)));
 
+extern int mmcheckf PARAMS ((PTR, void (*) (void), int));
+
 /* Pick up the current statistics. (see FIXME elsewhere) */
 
 extern struct mstats mmstats PARAMS ((PTR));
@@ -50,4 +56,6 @@ extern PTR mmalloc_getkey PARAMS ((PTR, int));
 
 extern int mmalloc_errno PARAMS ((PTR));
 
+extern int mmtrace PARAMS ((void));
+
 #endif  /* MMALLOC_H */
This page took 0.023035 seconds and 4 git commands to generate.