File: vm_none.c

package info (click to toggle)
iortcw 1.50a%2Bdfsg1-3%2Bdeb9u1
  • links: PTS, VCS
  • area: contrib
  • in suites: stretch
  • size: 26,432 kB
  • ctags: 59,549
  • sloc: ansic: 455,820; cpp: 6,507; makefile: 4,786; 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);
}