Move err_allocation_failed into error.c and make it available to

everyone.
This commit is contained in:
2025-03-31 15:08:29 +02:00
parent 75fc72c35d
commit 42da7b1d05
3 changed files with 6 additions and 3 deletions

View File

@ -18,4 +18,7 @@ static inline void error_free(error_t *err) {
free(err);
}
/* Some global errors */
extern error_t *err_allocation_failed;
#endif // INCLUDE_SRC_ERROR_H_