From 9fd0cc40b2c4ad70aa6349189e559ba19ed43cb1 Mon Sep 17 00:00:00 2001 From: Scott Duensing Date: Thu, 17 Oct 2019 18:55:31 -0500 Subject: [PATCH] Update JoeyLib Memory Functions --- JoeyLib-Memory-Functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JoeyLib-Memory-Functions.md b/JoeyLib-Memory-Functions.md index 68b3ecf..53494a6 100644 --- a/JoeyLib-Memory-Functions.md +++ b/JoeyLib-Memory-Functions.md @@ -10,7 +10,7 @@ Frees a block of memory pointed to by `p`. ```c void *jlMalloc(size_t *bytes); ``` -Allocates `bytes` of memory and returns a pointer to the new block. +Allocates `bytes` of memory and returns a pointer to the new block. Unlike traditional `malloc`, the new block will be zeroed. #### jlRealloc ```c