aboutsummaryrefslogtreecommitdiff
path: root/backendC/CleanCompilerSources/backendsupport.h
diff options
context:
space:
mode:
Diffstat (limited to 'backendC/CleanCompilerSources/backendsupport.h')
-rw-r--r--backendC/CleanCompilerSources/backendsupport.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/backendC/CleanCompilerSources/backendsupport.h b/backendC/CleanCompilerSources/backendsupport.h
index d0ea9eb..084ff30 100644
--- a/backendC/CleanCompilerSources/backendsupport.h
+++ b/backendC/CleanCompilerSources/backendsupport.h
@@ -12,6 +12,8 @@ typedef struct clean_string {int length; char chars [1]; } *CleanString;
extern void AssertionFailed (char *conditionString, char *file, int line);
# define Assert(condition) {if (!(condition)) AssertionFailed ("!(" #condition ")", __FILE__, __LINE__);}
+extern void fatal_backend_error (char *s);
+
/*
Memory management
=================