msvcrt: Fix __lconv_init() prototype.
This commit is contained in:
parent
4801209c5c
commit
90013af6f9
|
@ -93,6 +93,7 @@ int CDECL _initterm_e(_INITTERM_E_FN *table, _INITTERM_E_FN *end)
|
||||||
|
|
||||||
while (!res && table < end) {
|
while (!res && table < end) {
|
||||||
if (*table) {
|
if (*table) {
|
||||||
|
TRACE("calling %p\n", **table);
|
||||||
res = (**table)();
|
res = (**table)();
|
||||||
if (res)
|
if (res)
|
||||||
TRACE("function %p failed: 0x%x\n", *table, res);
|
TRACE("function %p failed: 0x%x\n", *table, res);
|
||||||
|
|
|
@ -541,10 +541,11 @@ struct MSVCRT_lconv * CDECL MSVCRT_localeconv(void)
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
* __lconv_init (MSVCRT.@)
|
* __lconv_init (MSVCRT.@)
|
||||||
*/
|
*/
|
||||||
void CDECL __lconv_init(void)
|
int CDECL __lconv_init(void)
|
||||||
{
|
{
|
||||||
/* this is used to make chars unsigned */
|
/* this is used to make chars unsigned */
|
||||||
charmax = 255;
|
charmax = 255;
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
|
|
Loading…
Reference in New Issue