view runtime/proghead.inc @ 78:abc6f3d644a4

Use Boehm-GC for garbage collection. Also make no_impl print on stderr rather than standard in and return a non-zero error code.
author Mike Pavone <pavone@retrodev.com>
date Sun, 15 Jul 2012 18:11:00 -0700
parents 2a9c6eed0c70
children ab7c142090a0
line wrap: on
line source

#include "object.h"
#include <stddef.h>
#include <stdlib.h>
#include <stdio.h>
#include <gc/gc.h>

object * main_module;

object * no_impl(uint32_t method_id, uint32_t num_args, object * self, va_list args)
{
	fprintf(stderr, "method %d is not implemented on object %p\n", method_id, self);
	fprintf(stderr, "main_module %p\n", main_module);
	exit(1);
	return NULL;
}