WONKY



LOG | FILES | OVERVIEW


#ifndef WONKY_COMPILE_C
#define WONKY_COMPILE_C WONKY_COMPILE_C 
#include <compile.h>

struct Compiled_Object* compile_program(struct Program *program,enum Compilation_Type compile_to_what)
{
	switch(compile_to_what)
	{
		default:
			wonky_assert(SHOULD_NOT_REACH_HERE);
	}
	wonky_assert(SHOULD_NOT_REACH_HERE);
}
void save_compiled_object(struct Compiled_Object *object,struct wonky_stream *out)
{
	switch(object->type)
	{
		default:
			wonky_assert(SHOULD_NOT_REACH_HERE);
	}
	wonky_assert(SHOULD_NOT_REACH_HERE);
}

#endif