1 #ifndef _MINIMAL_CRASH_HPP 2 #define _MINIMAL_CRASH_HPP 28 #define MINIMAL_CRASH(...) 29 minimalCrash(__FILE__,__LINE__,__PRETTY_FUNCTION__,__VA_ARGS__) 32 #define MINIMAL_CRASH_STDLIBERR(STRING) 33 MINIMAL_CRASH(__FILE__,__LINE__,__PRETTY_FUNCTION__,STRING " stdliberr: %s",strerror(errno
)) #define MINIMAL_CRASH(...)
Initialize the minimal crasher.
void minimalCrash(const char *path, const int line, const char *funcName, const char *format,...)