libisoalloc-sys 0.3.0

Security oriented allocator
Documentation
1
2
3
4
5
6
7
8
9
10
11
/* iso_alloc wild_free.c
 * Copyright 2023 - chris.rohlf@gmail.com */

#include "iso_alloc.h"
#include "iso_alloc_internal.h"

int main(int argc, char *argv[]) {
    int64_t *p = (int64_t *) 0x7fffffffffff;
    iso_free(p);
    return OK;
}