File: vm_none.c

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