Files
allwpilib/hal/lib/Athena/cpp/StackTrace.cpp

14 lines
198 B
C++
Raw Normal View History

#include "HAL/cpp/StackTrace.hpp"
#include <stdio.h>
void printCurrentStackTrace() {
// TODO: Implement
}
bool getErrnoToName(int32_t errNo, char* name) {
return false; // TODO: Implement
}