diff options
Diffstat (limited to 'src/core/alloc_func.hpp')
-rw-r--r-- | src/core/alloc_func.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/alloc_func.hpp b/src/core/alloc_func.hpp index 5268803e8..6f70627ed 100644 --- a/src/core/alloc_func.hpp +++ b/src/core/alloc_func.hpp @@ -12,12 +12,13 @@ #ifndef ALLOC_FUNC_HPP #define ALLOC_FUNC_HPP -/** +/* * Functions to exit badly with an error message. * It has to be linked so the error messages are not * duplicated in each object file making the final * binary needlessly large. */ + void NORETURN MallocError(size_t size); void NORETURN ReallocError(size_t size); |