10 lines
168 B
C
10 lines
168 B
C
|
#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__
|