This commit is contained in:
Daan Leijen 2023-03-15 19:15:53 -07:00
parent 479ef4bf4c
commit cfe3d04299
3 changed files with 19 additions and 18 deletions

View file

@ -1,5 +1,5 @@
/* ---------------------------------------------------------------------------- /* ----------------------------------------------------------------------------
Copyright (c) 2019-2020 Microsoft Research, Daan Leijen Copyright (c) 2019-2023 Microsoft Research, Daan Leijen
This is free software; you can redistribute it and/or modify it under the This is free software; you can redistribute it and/or modify it under the
terms of the MIT license. A copy of the license can be found in the file terms of the MIT license. A copy of the license can be found in the file
"LICENSE" at the root of this distribution. "LICENSE" at the root of this distribution.

View file

@ -20,20 +20,21 @@ terms of the MIT license. A copy of the license can be found in the file
// containing the whole library. If it is linked first // containing the whole library. If it is linked first
// it will override all the standard library allocation // it will override all the standard library allocation
// functions (on Unix's). // functions (on Unix's).
#include "stats.c"
#include "random.c"
#include "os.c"
#include "bitmap.c"
#include "arena.c"
#include "region.c"
#include "segment.c"
#include "page.c"
#include "heap.c"
#include "alloc.c" #include "alloc.c"
#include "alloc-aligned.c" #include "alloc-aligned.c"
#include "alloc-posix.c"
#if MI_OSX_ZONE #if MI_OSX_ZONE
#include "alloc-override-osx.c" #include "alloc-override-osx.c"
#endif #endif
#include "alloc-posix.c"
#include "arena.c"
#include "bitmap.c"
#include "heap.c"
#include "init.c" #include "init.c"
#include "options.c" #include "options.c"
#include "os.c"
#include "page.c"
#include "prim/prim.c"
#include "random.c"
#include "region.c"
#include "segment.c"
#include "stats.c"