update include.am and add function description

This commit is contained in:
Tesfa Mael
2019-01-02 15:51:04 -08:00
parent 58da860cd6
commit 1f26282bf2
2 changed files with 6 additions and 0 deletions

View File

@ -33,11 +33,15 @@ size_t getMemAllocatedSize_deos(size_t* size){
return allocatedMemory;
}
/* Simply returns without freeing any memory. */
void free_deos(void *ptr) {
//printf("fake free_deos()\n");
return;
}
/* The caller of this function is responsible for copying the old data into new buffer */
void *realloc_deos(void *ptr, size_t size) {
void *newptr;

View File

@ -16,6 +16,8 @@ include IDE/OPENSTM32/include.am
include IDE/VS-ARM/include.am
include IDE/GCC-ARM/include.am
include IDE/CSBENCH/include.am
include IDE/ECLIPSE/DEOS/include.am
include IDE/ECLIPSE/MICRIUM/include.am
include IDE/mynewt/include.am
include IDE/Renesas/cs+/Projects/include.am
include IDE/Renesas/e2studio/Projects/include.am