Mirror with some correction

Dependencies:   mbed FastIO FastPWM USBDevice

Revision:
79:682ae3171a08
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/NewMalloc/NewMalloc.h	Thu Mar 23 05:19:05 2017 +0000
@@ -0,0 +1,12 @@
+#ifndef _NEWMALLOC_H_
+#define _NEWMALLOC_H_
+
+#include "mbed.h"
+
+// our custom memory allocator
+void *xmalloc(size_t);
+
+// Number of free bytes remaning
+size_t mallocBytesFree();
+
+#endif