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:
Colin Finck 2008-05-28 21:08:23 +00:00
parent c6aa541df2
commit 1e95911991
21 changed files with 1445 additions and 851 deletions

View file

@ -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;
}