summaryrefslogtreecommitdiff
path: root/src/stdlib/abort_handler_s.c
blob: 7639ddfee9aea5af37ec08b160364655b4ca0c12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
//#include <errno.h>
#include "errno/errno_t.h"
#include "_stdlib.h"

void abort_handler_s(const char * restrict msg, void * restrict ptr, errno_t error)
{
	struct __constraint_info *ci = ptr;

	puts(msg);
	printf("In call to %s\n", ci->func);
	printf("Provided error: %s (%d)\n", strerror(error), error);
	abort();
}

/*
CEXT1(201112)
*/