Extremely simple malloc() implementation. More...
#include <assert.h>#include <malloc.h>#include <physmem.h>#include <string.h>#include <types.h>Go to the source code of this file.
Functions | |
| void * | malloc (size_t size) |
| Allocate size bytes of dynamic memory. | |
| void * | zalloc (size_t size) |
| Allocate size bytes of zero-initialized dynamic memory. | |
Extremely simple malloc() implementation.
Copyright (C) 2009 Atmel Corporation. All rights reserved.
Definition in file malloc_simple.c.
1.6.3