File: vm_none.c

package info (click to toggle)
iortcw 1.51.c%2Bdfsg1-7
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid, trixie
  • size: 25,304 kB
  • sloc: ansic: 457,326; cpp: 6,507; makefile: 4,737; sh: 1,292; asm: 1,176; xml: 31
file content (10 lines) | stat: -rw-r--r-- 156 bytes parent folder | download | duplicates (23)
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);
}