mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
Previously, wpi_setErrnoError and wpi_setErrnoErrorWithContext always printed "Unknown errno" whenever a C library error occured. Change-Id: Ib235138eea0e83b0d7462dfd6e834e3499e3b0c5
13 lines
133 B
C++
13 lines
133 B
C++
#pragma once
|
|
|
|
#ifdef __vxworks
|
|
#include <vxWorks.h>
|
|
#else
|
|
#include <stdint.h>
|
|
#endif
|
|
|
|
extern "C"
|
|
{
|
|
void printCurrentStackTrace();
|
|
}
|