diff options
Diffstat (limited to 'src/common.cpp')
-rw-r--r-- | src/common.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common.cpp b/src/common.cpp index 01c8779..6dc2c46 100644 --- a/src/common.cpp +++ b/src/common.cpp @@ -95,6 +95,13 @@ const char *readFile(const char *path){ return buf; } +void +UserError( std::string reason ) +{ + std::cout << "User error: " << reason << "!" << std::endl; + abort(); +} + /*int strCreateFunc(const char *equ){ static unsigned int size; static char *filebuf; |