summaryrefslogtreecommitdiff
path: root/src/core/alloc_func.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/alloc_func.cpp')
-rw-r--r--src/core/alloc_func.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/alloc_func.cpp b/src/core/alloc_func.cpp
index 930482aa7..f399aadf8 100644
--- a/src/core/alloc_func.cpp
+++ b/src/core/alloc_func.cpp
@@ -9,7 +9,7 @@
* Function to exit with an error message after malloc() or calloc() have failed
* @param size number of bytes we tried to allocate
*/
-void MallocError(size_t size)
+void NORETURN MallocError(size_t size)
{
error("Out of memory. Cannot allocate %i bytes", size);
}
@@ -18,7 +18,7 @@ void MallocError(size_t size)
* Function to exit with an error message after realloc() have failed
* @param size number of bytes we tried to allocate
*/
-void ReallocError(size_t size)
+void NORETURN ReallocError(size_t size)
{
error("Out of memory. Cannot reallocate %i bytes", size);
}