]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - include/malloc.h
fsl_diu_fb: further refactoring of FSL DIU code
[karo-tx-uboot.git] / include / malloc.h
index a38464e62915c05362179d14e9381e2174f5babb..3e145ad11c32bf0c9fcfb88c6d06f4895e8316d1 100644 (file)
@@ -937,6 +937,14 @@ int     mALLOPt();
 struct mallinfo mALLINFo();
 #endif
 
+/*
+ * Begin and End of memory area for malloc(), and current "brk"
+ */
+extern ulong mem_malloc_start;
+extern ulong mem_malloc_end;
+extern ulong mem_malloc_brk;
+
+void mem_malloc_init(ulong start, ulong size);
 
 #ifdef __cplusplus
 };  /* end of extern "C" */