mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 04:35:53 +00:00
[CRT] Fix some data exports
* Fix initialization of _commode. In msvcrt it is allocated from .bss, i.e. initialized with 0. * _fileinfo is initialized with -1 * _aexit_rtn is a pointer, not a function * Fix _sys_nerr
This commit is contained in:
parent
5f548654f4
commit
296e07b94d
4 changed files with 5 additions and 8 deletions
|
@ -76,7 +76,7 @@ __syserr35, __syserr36, __syserr37, __syserr38, __syserr39,
|
|||
__syserr40, __syserr41, __syserr42
|
||||
};
|
||||
|
||||
int _sys_nerr = sizeof(_sys_errlist) / sizeof(_sys_errlist[0]) - 1;
|
||||
int _sys_nerr = sizeof(_sys_errlist) / sizeof(_sys_errlist[0]);
|
||||
|
||||
/*********************************************************************
|
||||
* strerror (MSVCRT.@)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue