uc-sdk
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
reent.c
Go to the documentation of this file.
1 #include "reent.h"
2 
3 static struct _reent main_thread;
4 struct _reent * _impure_ptr = &main_thread;
5 
6 __attribute__((constructor)) static void init_main_thread() {
7  _REENT_INIT_PTR(_impure_ptr);
8 }