tested working terminal and reordering of code
[cortex-from-scratch] / include / lib / pool.h
1 /* Fixed size memory pool allocation  */
2 extern void pool_init(size_t size_arg, unsigned int blocks_arg, uint32_t * entry_SRAM); 
3 extern void * alloc();
4 extern void free(void* p);