summaryrefslogtreecommitdiff
path: root/HeapLAB/.src/demo_fastbins.c
blob: a50aa1f53a09f20055cc185954fad9193384e10c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char* argv[]) {

    void* a = malloc(1);
    void* b = malloc(1);
    void* c = malloc(1);

    free(a);
    free(b);
    free(c);

    void* d = malloc(1);
    void* e = malloc(1);
    void* f = malloc(1);

    return 0;
}