Files
allwpilib/hal/include/HAL/cpp/StackTrace.h

16 lines
229 B
C
Raw Normal View History

#ifdef __vxworks
#include <vxWorks.h>
#else
#include <stdint.h>
#endif
#ifndef HAL_STACKTRACE_H
#define HAL_STACKTRACE_H
extern "C" {
void printCurrentStackTrace();
bool getErrnoToName(int32_t errNo, char* name);
}
#endif