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