diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-02-27 12:39:03 +0100 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-02-27 12:39:03 +0100 |
| commit | 9d2ca1ee92a13d6e276d74536ebf295f2331dc08 (patch) | |
| tree | 62ec50e236d6ff6586f948fd8940d4e7f7a94788 /tests/src/test_show.c | |
| parent | c950a0a70d37f962bbef66221ff0a23cad450195 (diff) | |
| download | malloc-9d2ca1ee92a13d6e276d74536ebf295f2331dc08.tar.gz malloc-9d2ca1ee92a13d6e276d74536ebf295f2331dc08.zip | |
Clarify purpose of helper functions and label the allocate/verify/free
phases in _s_test_category and _s_test_realloc. Remove _s_atoi in
favor of stdlib atoi.
Diffstat (limited to 'tests/src/test_show.c')
| -rw-r--r-- | tests/src/test_show.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/src/test_show.c b/tests/src/test_show.c index e5e7dca..877d39e 100644 --- a/tests/src/test_show.c +++ b/tests/src/test_show.c @@ -8,6 +8,7 @@ int main (void) { + /* One allocation per category: TINY, TINY, SMALL, LARGE. */ void *a = malloc (42); void *b = malloc (100); void *c = malloc (500); |
