mirror of
https://github.com/reactos/reactos.git
synced 2025-06-20 07:36:05 +00:00
Samuel Serapión (samdwise51 AT gmail DOT com):
- Sync parts of msvcrt with Wine (more will follow) This makes us passing a lot more msvcrt Wine tests (like all heap tests) svn path=/trunk/; revision=33747
This commit is contained in:
parent
c6aa541df2
commit
1e95911991
21 changed files with 1445 additions and 851 deletions
|
@ -14,6 +14,8 @@
|
|||
#include <string.h>
|
||||
#include <process.h>
|
||||
|
||||
#define NDEBUG
|
||||
#include<internal/debug.h>
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
@ -112,3 +114,9 @@ int system(const char *command)
|
|||
|
||||
return nStatus;
|
||||
}
|
||||
|
||||
int CDECL _wsystem(const wchar_t* cmd)
|
||||
{
|
||||
DPRINT1("_wsystem stub\n");
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue