ucrtbase: Hook up _Exit.
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
ccbfb951c2
commit
67cae2dedc
|
@ -1,4 +1,4 @@
|
|||
@ stub _Exit
|
||||
@ cdecl _Exit(long) ucrtbase._Exit
|
||||
@ cdecl -arch=i386 __control87_2(long long ptr ptr) ucrtbase.__control87_2
|
||||
@ cdecl __doserrno() ucrtbase.__doserrno
|
||||
@ cdecl __fpe_flt_rounds() ucrtbase.__fpe_flt_rounds
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
@ cdecl _CreateFrameInfo(ptr ptr)
|
||||
@ stdcall _CxxThrowException(ptr ptr)
|
||||
@ cdecl -arch=i386 -norelay _EH_prolog()
|
||||
@ stub _Exit
|
||||
@ cdecl _Exit(long) MSVCRT__exit
|
||||
@ stub _FCbuild
|
||||
@ stub _FCmulcc
|
||||
@ stub _FCmulcr
|
||||
|
|
|
@ -179,6 +179,7 @@ errno_t __cdecl _ui64toa_s(unsigned __int64,char*,size_t,int);
|
|||
char* __cdecl _ultoa(__msvcrt_ulong,char*,int);
|
||||
errno_t __cdecl _ultoa_s(__msvcrt_ulong,char*,size_t,int);
|
||||
|
||||
void __cdecl _Exit(int);
|
||||
void __cdecl _exit(int);
|
||||
void __cdecl abort(void);
|
||||
int __cdecl abs(int);
|
||||
|
|
Loading…
Reference in New Issue