The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#ifndef SPVM_MY_VAR_H
#define SPVM_MY_VAR_H

#include "spvm_base.h"

struct SPVM_my_var {
  SPVM_OP* op_type;
  SPVM_OP* op_name;
  int32_t index;
};

SPVM_MY_VAR* SPVM_MY_VAR_new();

#endif