Removed redundant return statement

This commit is contained in:
2021-11-26 19:32:28 +00:00
parent 043a7d4828
commit 927df86afb

View File

@@ -66,5 +66,4 @@ void *__crt_heap_extend(size_t sz)
heap_end += sz; heap_end += sz;
return out; return out;
return NULL;
} }