Files
reactos/sdk/lib/crt
Katayama Hirofumi MZ fdedc549d0 [MSVCRT] Follow-up of Follow-up of #5032 (f172503)
Fix for system/_wsystem.
Use _set_errno(ENOMEM) for malloc failure.
Rename status variable as exit_code.
2023-03-05 23:28:00 +09:00
..
2021-08-04 02:03:07 +02:00
2021-08-04 02:03:07 +02:00
2021-07-20 23:13:03 +02:00
2021-12-28 01:55:38 +03:00
2021-07-20 23:13:03 +02:00
2021-07-20 23:13:03 +02:00
2021-07-20 23:13:03 +02:00
2021-07-20 23:13:03 +02:00
2021-07-20 23:13:03 +02:00
2021-07-20 23:13:03 +02:00
2021-07-20 23:13:03 +02:00

Big chunks of this CRT library are taken from Wine's msvcrt implementation,
you can find a list of synced files in README.WINE file.

Notes:
1. When syncing, omit MSVCRT_ prefix where possible, Wine has to keep this
because they are linking with *both* original crt, and ms crt implementation.
ReactOS has the only CRT, so no need to make distinct functions.
2. ReactOS compiles two versions of the CRT library, one for usermode
(called just "crt"), and one version for kernelmode usage (called "libcntpr").
In order to separate the code, you can use #ifdef _LIBCNT_ for libcntpr code.