Add support for target specific command line switches to old-style simualtors.
[deliverable/binutils-gdb.git] / mmalloc / mmalloc.h
index 83998761c62da9b0d39554d0e9a72e86ad48f85d..082547ea5046b7fe6410ee3148788dec192dc8ab 100644 (file)
@@ -2,7 +2,10 @@
 #define MMALLOC_H 1
 
 #ifdef HAVE_STDDEF_H
-#include <stddef.h>
+#  include <stddef.h>
+#else
+#  include <sys/types.h>   /* for size_t */
+#  include <stdio.h>       /* for NULL */
 #endif
 
 #include "ansidecl.h"
@@ -36,6 +39,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 +55,8 @@ extern PTR mmalloc_getkey PARAMS ((PTR, int));
 
 extern int mmalloc_errno PARAMS ((PTR));
 
+extern int mmtrace PARAMS ((void));
+
+extern PTR mmalloc_findbase PARAMS ((int));
+
 #endif  /* MMALLOC_H */
This page took 0.023607 seconds and 4 git commands to generate.