summaryrefslogtreecommitdiff
path: root/src/qcommon/vm_none.c
blob: c7e5ba08a0baaa8699d1eaf63e7539da91e99a8f (plain)
1
2
3
4
5
6
7
8
9
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);
}