mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-13 07:47:43 +00:00
10 lines
157 B
C
10 lines
157 B
C
#include "vm_local.h"
|
|
|
|
int VM_CallCompiled( vm_t *vm, long *args ) {
|
|
exit(99);
|
|
return 0;
|
|
}
|
|
|
|
void VM_Compile( vm_t *vm, vmHeader_t *header ) {
|
|
exit(99);
|
|
}
|