forked from KolibriOS/kolibrios
a3c61f5039
git-svn-id: svn://kolibrios.org@6664 a494cfbc-eb01-0410-851d-a64ba20cac60
16 lines
220 B
C
16 lines
220 B
C
#include <_ansi.h>
|
|
#include <string.h>
|
|
#include <reent.h>
|
|
|
|
void init_global_reent()
|
|
{
|
|
struct _reent *ent;
|
|
|
|
ent =_GLOBAL_REENT;
|
|
|
|
__asm__ __volatile__(
|
|
"movl %0, %%fs:16"
|
|
::"r"(ent));
|
|
}
|
|
|