Mirror with some correction

Dependencies:   mbed FastIO FastPWM USBDevice

NewMalloc/NewMalloc.h

Committer:
arnoz
Date:
2021-10-01
Revision:
116:7a67265d7c19
Parent:
79:682ae3171a08

File content as of revision 116:7a67265d7c19:

#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