aboutsummaryrefslogtreecommitdiff
path: root/code/qcommon/vm_none.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/qcommon/vm_none.c')
-rw-r--r--code/qcommon/vm_none.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/code/qcommon/vm_none.c b/code/qcommon/vm_none.c
new file mode 100644
index 0000000..c7e5ba0
--- /dev/null
+++ b/code/qcommon/vm_none.c
@@ -0,0 +1,10 @@
+#include "vm_local.h"
+
+int VM_CallCompiled( vm_t *vm, int *args ) {
+ exit(99);
+ return 0;
+}
+
+void VM_Compile( vm_t *vm, vmHeader_t *header ) {
+ exit(99);
+}