diff options
author | Jakob Kaivo <jkk@ung.org> | 2024-01-10 19:45:54 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2024-01-10 19:45:54 -0500 |
commit | 7ecc2d92a45cbd7b7c13c80f51a1eaaaa3d8f286 (patch) | |
tree | 18b5eb26fd9c55e57e575579539050caeadcec50 /src | |
parent | c5bafff3a8ed565c93b2ea7b5e8dd7f73dd9536b (diff) |
include "_safety.h" instead of "_assert.h"
Diffstat (limited to 'src')
-rw-r--r-- | src/stdlib/abort_handler_s.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdlib/abort_handler_s.c b/src/stdlib/abort_handler_s.c index f6471151..145c9e6d 100644 --- a/src/stdlib/abort_handler_s.c +++ b/src/stdlib/abort_handler_s.c @@ -4,7 +4,7 @@ //#include <errno.h> #include "errno/errno_t.h" #include "_stdlib.h" -#include "_assert.h" +#include "_safety.h" void abort_handler_s(const char * restrict msg, void * restrict ptr, errno_t error) { |