mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
14 lines
182 B
C++
14 lines
182 B
C++
#pragma once
|
|
|
|
#ifdef __vxworks
|
|
#include <vxWorks.h>
|
|
#else
|
|
#include <stdint.h>
|
|
#endif
|
|
|
|
extern "C"
|
|
{
|
|
void printCurrentStackTrace();
|
|
bool getErrnoToName(int32_t errNo, char* name);
|
|
}
|