msvcrt: Prefix _set_output_format() with MSVCRT_ to avoid a collision with MinGW.
This commit is contained in:
parent
97be8d027b
commit
f63fd82610
|
@ -1274,7 +1274,7 @@
|
|||
@ cdecl _set_fmode(long) MSVCRT__set_fmode
|
||||
@ cdecl _set_invalid_parameter_handler(ptr)
|
||||
@ stub _set_malloc_crt_max_wait
|
||||
@ cdecl _set_output_format(long)
|
||||
@ cdecl _set_output_format(long) MSVCRT__set_output_format
|
||||
@ cdecl _set_printf_count_output(long) MSVCRT__set_printf_count_output
|
||||
@ cdecl _set_purecall_handler(ptr)
|
||||
@ cdecl _seterrormode(long)
|
||||
|
|
|
@ -1632,7 +1632,7 @@
|
|||
@ cdecl _set_fmode(long) MSVCRT__set_fmode
|
||||
@ cdecl _set_invalid_parameter_handler(ptr)
|
||||
@ stub _set_malloc_crt_max_wait
|
||||
@ cdecl _set_output_format(long)
|
||||
@ cdecl _set_output_format(long) MSVCRT__set_output_format
|
||||
@ cdecl _set_printf_count_output(long) MSVCRT__set_printf_count_output
|
||||
@ cdecl _set_purecall_handler(ptr)
|
||||
@ cdecl _seterrormode(long)
|
||||
|
|
|
@ -953,7 +953,7 @@
|
|||
@ cdecl _set_fmode(long) MSVCRT__set_fmode
|
||||
@ cdecl _set_invalid_parameter_handler(ptr)
|
||||
@ stub _set_malloc_crt_max_wait
|
||||
@ cdecl _set_output_format(long)
|
||||
@ cdecl _set_output_format(long) MSVCRT__set_output_format
|
||||
@ cdecl _set_printf_count_output(long) MSVCRT__set_printf_count_output
|
||||
@ cdecl _set_purecall_handler(ptr)
|
||||
@ cdecl _set_sbh_threshold(long)
|
||||
|
|
|
@ -929,7 +929,7 @@
|
|||
@ cdecl _set_fmode(long) MSVCRT__set_fmode
|
||||
@ cdecl _set_invalid_parameter_handler(ptr)
|
||||
@ stub _set_malloc_crt_max_wait
|
||||
@ cdecl _set_output_format(long)
|
||||
@ cdecl _set_output_format(long) MSVCRT__set_output_format
|
||||
@ cdecl _set_printf_count_output(long) MSVCRT__set_printf_count_output
|
||||
@ cdecl _set_purecall_handler(ptr)
|
||||
@ cdecl _set_sbh_threshold(long)
|
||||
|
|
|
@ -377,7 +377,7 @@ unsigned int CDECL MSVCRT__get_output_format(void)
|
|||
/*********************************************************************
|
||||
* _set_output_format (MSVCRT.@)
|
||||
*/
|
||||
unsigned int CDECL _set_output_format(unsigned int new_output_format)
|
||||
unsigned int CDECL MSVCRT__set_output_format(unsigned int new_output_format)
|
||||
{
|
||||
unsigned int ret = output_format;
|
||||
|
||||
|
|
|
@ -898,7 +898,7 @@
|
|||
@ cdecl _set_error_mode(long)
|
||||
# stub _set_fileinfo(long)
|
||||
@ cdecl _set_fmode(long) MSVCRT__set_fmode
|
||||
@ cdecl _set_output_format(long)
|
||||
@ cdecl _set_output_format(long) MSVCRT__set_output_format
|
||||
@ cdecl _set_sbh_threshold(long)
|
||||
@ cdecl _seterrormode(long)
|
||||
@ cdecl -arch=i386,x86_64,arm -norelay _setjmp(ptr) MSVCRT__setjmp
|
||||
|
|
Loading…
Reference in New Issue