summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/misc.c b/misc.c
new file mode 100644
index 0000000..9224145
--- /dev/null
+++ b/misc.c
@@ -0,0 +1,17 @@
+/* Miscellaneous C routines for 680 project.
+ *
+ * Error handling, for now.
+ *
+ * Copyright 2010, Duncan Smith
+ * GPL
+ */
+
+#include <tigcclib.h>
+#include "asm_vars.h"
+
+/* SOMETHING WENT HORRIBLY HORRIBLY WRONG
+ */
+void throw_error(char *message)
+{
+ return;
+}