pass through enable malloc build for dragonflybsd. (#614)

This commit is contained in:
David CARLIER
2023-05-30 21:25:59 +01:00
committed by GitHub
parent 55376aa006
commit d9f5bd0500
2 changed files with 5 additions and 1 deletions

View File

@@ -45,6 +45,11 @@ namespace snmalloc::external_alloc
{
using ::malloc_usable_size;
}
# elif defined(__DragonFly__)
namespace snmalloc::external_alloc
{
using ::malloc_usable_size;
}
# else
# error Define malloc size macro for this platform.
# endif