The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#include "spvm_var.h"

#include "spvm_compiler_allocator.h"
#include "spvm_compiler.h"

SPVM_VAR* SPVM_VAR_new(SPVM_COMPILER* compiler) {
  return SPVM_COMPILER_ALLOCATOR_alloc_memory_pool(compiler, compiler->allocator, sizeof(SPVM_VAR));
}