diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-05-01 13:51:36 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-05-01 13:51:36 +0300 |
commit | 5c11915931ad43617ba6f62189bb11630b9624d4 (patch) | |
tree | 2074c44eb54d115b04486c7243ada96a7381d7b5 /src/common.h | |
parent | ce2f4acb9a66a5b9f473185af6c8d645e776f1fa (diff) | |
download | ejit-5c11915931ad43617ba6f62189bb11630b9624d4.tar.gz ejit-5c11915931ad43617ba6f62189bb11630b9624d4.zip |
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/common.h b/src/common.h index dc970f0..1eb762e 100644 --- a/src/common.h +++ b/src/common.h @@ -6,19 +6,19 @@ #define VEC_TYPE struct ejit_arg #define VEC_NAME args -#include "vec.h" +#include <conts/vec.h> #define VEC_TYPE int64_t #define VEC_NAME gprs -#include "vec.h" +#include <conts/vec.h> #define VEC_TYPE double #define VEC_NAME fprs -#include "vec.h" +#include <conts/vec.h> #define VEC_TYPE size_t #define VEC_NAME labels -#include "vec.h" +#include <conts/vec.h> enum ejit_opcode { EJIT_OP_MOVI, @@ -263,11 +263,11 @@ struct ejit_insn { #define VEC_TYPE struct ejit_insn #define VEC_NAME insns -#include "vec.h" +#include <conts/vec.h> #define VEC_TYPE enum ejit_type #define VEC_NAME types -#include "vec.h" +#include <conts/vec.h> struct fpr_stat { struct ejit_fpr f; @@ -276,7 +276,7 @@ struct fpr_stat { #define VEC_NAME fpr_stats #define VEC_TYPE struct fpr_stat -#include "vec.h" +#include <conts/vec.h> struct gpr_stat { struct ejit_gpr r; @@ -285,7 +285,7 @@ struct gpr_stat { #define VEC_NAME gpr_stats #define VEC_TYPE struct gpr_stat -#include "vec.h" +#include <conts/vec.h> struct ejit_func { struct types sign; |