#ifndef __BTDM_MEM_H__
#define __BTDM_MEM_H__
#include <stdint.h>
void * dram_malloc( uint32_t xWantedSize );
void dram_free( void * pv );
#endif // __BTDM_MEM_H__