summaryrefslogtreecommitdiff
path: root/misc.c
blob: 50ccee99f06ffbb284a1efbef4e638567674d0b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Miscellaneous C routines for 680 project.
 *
 * Error handling, for now.
 *
 * Copyright 2010, Astrid Smith
 * GPL
 */

#include <tigcclib.h>
#include "asm_vars.h"

/* SOMETHING WENT HORRIBLY HORRIBLY WRONG
 */
void throw_error(char *message)
{
	return;
}