File: vm_none.c

package info (click to toggle)
iortcw 1.51.b%2Bdfsg1-3
  • links: PTS, VCS
  • area: contrib
  • in suites: buster
  • size: 24,988 kB
  • sloc: ansic: 456,275; cpp: 6,507; makefile: 4,769; sh: 1,328; asm: 1,177
file content (10 lines) | stat: -rw-r--r-- 156 bytes parent folder | download | duplicates (26)
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);
}