/ crtinit.s (emx+gcc) -- Copyright (c) 1992-1993 by Eberhard Mattes

        .globl  __CRT_init
#if defined (_EMXLIBC_DLL)
        .globl  __CRT_init_08f
#endif

        .text

#if defined (_EMXLIBC_DLL)
__CRT_init_08f:
        movl    $___CTOR_LIST__, __ctor_ptr
        movl    $___DTOR_LIST__, __dtor_ptr
        call    __entry2
        call    __startup
        call    ___main
        xorl    %eax, %eax              / Success
        ret
#endif

__CRT_init:
        call    __entry2
        call    __startup
        xorl    %eax, %eax              / Success
        ret
