diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2024-04-19 16:21:03 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2024-04-19 16:21:03 -0400 |
commit | df81a4f7551e2d6a216e8c82354df6caa8ad933e (patch) | |
tree | c835720d9964a95f73820145d992bf676869cd08 /malloc.c | |
parent | 5b1b3bec3f25ea5fc1f48c269f300c4211a1bac7 (diff) | |
download | heap-df81a4f7551e2d6a216e8c82354df6caa8ad933e.tar.gz heap-df81a4f7551e2d6a216e8c82354df6caa8ad933e.tar.bz2 heap-df81a4f7551e2d6a216e8c82354df6caa8ad933e.zip |
Diffstat (limited to 'malloc.c')
-rw-r--r-- | malloc.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,10 @@ +/* + * Copyright (c) Jon Santmyer. + * This source file is released under the LGPL Version 3 as detailed in + * the LICENSE file provided in the following repository: + * https://git.jonsantmyer.com/heap/ + * */ + #include "malloc.h" #include <assert.h> #include <stdbool.h> |