diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2024-04-19 16:11:24 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2024-04-19 16:11:24 -0400 |
commit | 5b1b3bec3f25ea5fc1f48c269f300c4211a1bac7 (patch) | |
tree | d47b7693dd91a8dd08a5c7def418fd132a7032ac /test | |
download | heap-5b1b3bec3f25ea5fc1f48c269f300c4211a1bac7.tar.gz heap-5b1b3bec3f25ea5fc1f48c269f300c4211a1bac7.tar.bz2 heap-5b1b3bec3f25ea5fc1f48c269f300c4211a1bac7.zip |
initial commit; mostly documented.
Diffstat (limited to 'test')
-rw-r--r-- | test/main.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/main.c b/test/main.c new file mode 100644 index 0000000..0b2b6a4 --- /dev/null +++ b/test/main.c @@ -0,0 +1,9 @@ +#include "../malloc.h" +#include <stdio.h> +#include <assert.h> + +int +main(int argc, char **argv) +{ + +} |