summaryrefslogtreecommitdiffstats
path: root/bytecode/value.h
diff options
context:
space:
mode:
Diffstat (limited to 'bytecode/value.h')
-rw-r--r--bytecode/value.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/bytecode/value.h b/bytecode/value.h
deleted file mode 100644
index 3fa78c4..0000000
--- a/bytecode/value.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef _VALUE_H_
-#define _VALUE_H_
-
-#include <stdbool.h>
-#include <stdint.h>
-
-typedef uint64_t value;
-
-bool is_int(value);
-
-int64_t to_int(value);
-
-value from_int(int64_t);
-
-bool is_pointer(value);
-
-value *to_pointer(value);
-
-value from_pointer(value *);
-
-#endif