summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 20:00:29 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 20:00:29 +0100
commitef522ea5cd0c1f25fe8f3c66e23ef7f61a3017fd (patch)
treeea62e5d9d7249ad15f77a6ba2c2b51e2750c90b2 /README.md
parent61ec593c95f3210bdfcd22539d43ef507210981f (diff)
downloadnonstd-ef522ea5cd0c1f25fe8f3c66e23ef7f61a3017fd.tar.gz
Cleanup and fixes
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 7004467..69d239b 100644
--- a/README.md
+++ b/README.md
@@ -156,7 +156,7 @@ char *content = read_entire_file("data.txt", &size);
if (content) {
printf("Read %zu bytes:\n%s\n", size, content);
- FREE(content); // Standard free (unless using arena)
+ free(content); // Standard free (unless using arena)
}
// Or read directly into a string builder