mirror of
https://github.com/devkitPro/wut.git
synced 2026-07-26 04:30:50 -05:00
I was getting issues with __volatile__ for unknown reason, so moving this to a dedicated file sidesteps the issue entirely and passes this straight to GAS.
13 lines
132 B
C++
13 lines
132 B
C++
#include "wut_gthread.h"
|
|
|
|
extern "C" void
|
|
__init_wut_stdcpp()
|
|
{
|
|
__init_wut_gthread();
|
|
}
|
|
|
|
extern "C" void
|
|
__fini_wut_stdcpp()
|
|
{
|
|
}
|