Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 3914 → Rev 3915

/programs/develop/libraries/newlib/crt/crt3.c
38,6 → 38,8
 
void* get_entry_point(void *raw);
 
void _pei386_runtime_relocator (void){};
 
void __attribute__((noreturn))
__crt_startup (void)
{
45,11 → 47,12
void *img;
void __attribute__((noreturn)) (*entry)(void *img);
 
// _pei386_runtime_relocator();
 
img = load_libc();
 
if(img == NULL)
{
asm("int3");
asm ("int $0x40" ::"a"(-1));
};