MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / dError

Function dError

3rd_party/Src/ode/ode/src/error.cpp:87–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85#ifndef WIN32
86
87extern "C" void dError (int num, const char *msg, ...)
88{
89 va_list ap;
90 va_start (ap,msg);
91 if (error_function) error_function (num,msg,ap);
92 else printMessage (num,"ODE Error",msg,ap);
93 exit (1);
94}
95
96
97extern "C" void dDebug (int num, const char *msg, ...)

Callers

nothing calls this directly

Calls 1

printMessageFunction · 0.85

Tested by

no test coverage detected