Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6536 → Rev 6664

/contrib/sdk/sources/newlib/libc/reent/getreent.c
13,7 → 13,7
 
ent = user_alloc(sizeof(struct _reent));
 
_REENT_INIT_PTR(ent);
_REENT_INIT_PTR_ZEROED(ent);
 
__asm__ __volatile__(
"movl %0, %%fs:16"
/contrib/sdk/sources/newlib/libc/reent/init_reent.c
8,11 → 8,8
 
ent =_GLOBAL_REENT;
 
_REENT_INIT_PTR(ent);
 
__asm__ __volatile__(
"movl %0, %%fs:16"
::"r"(ent));
// __sinit(ent);
}