1 /*
2  * Copyright (c) 2015 Andrew Kelley
3  *
4  * This file is part of zig, which is MIT licensed.
5  * See http://opensource.org/licenses/MIT
6  */
7 
8 #ifndef ERROR_HPP
9 #define ERROR_HPP
10 
11 #include "stage2.h"
12 
13 const char *err_str(Error err);
14 
15 #define assertNoError(err) assert((err) == ErrorNone);
16 
17 #endif
18