Samuel SerapiĆ³n (samdwise51 AT gmail DOT com):
[reactos.git] / reactos / lib / sdk / crt / process / _system.c
index 937277f..99add83 100644 (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;
+}