aboutsummaryrefslogtreecommitdiffstats
path: root/src/malloc.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/malloc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/malloc.c b/src/malloc.c
index e09cc85..7789070 100644
--- a/src/malloc.c
+++ b/src/malloc.c
@@ -40,7 +40,6 @@
*/
void* malloc(size_t size)
{
- /* TODO implement implementation of malloc */
char* ptr;
size_t full_size;