#include #include #include //#include #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); if (ci) { printf("In call to %s\n", ci->func); printf("value %x\n", ci->value); } if (error != 0) { printf("Provided error: %s (%d)\n", strerror(error), error); } abort(); } /* CEXT1(201112) */