Converted cwait.c and system.c to lower case.
authorBoudewijn Dekker <ariadne@xs4all.nl>
Mon, 22 Mar 1999 18:09:39 +0000 (18:09 +0000)
committerBoudewijn Dekker <ariadne@xs4all.nl>
Mon, 22 Mar 1999 18:09:39 +0000 (18:09 +0000)
svn path=/trunk/; revision=328

reactos/lib/crtdll/process/Cwait.c [deleted file]
reactos/lib/crtdll/process/System.c [deleted file]

diff --git a/reactos/lib/crtdll/process/Cwait.c b/reactos/lib/crtdll/process/Cwait.c
deleted file mode 100644 (file)
index e7fdb22..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <process.h>
-#include <windows.h>
-
-int _cwait( int *termstat, int procHandle, int action )
-{
-       DWORD RetVal;
-       RetVal = WaitForSingleObject((HANDLE)procHandle, INFINITE);
-       if (RetVal == WAIT_FAILED || RetVal == WAIT_ABANDONED) {
-               //errno = ECHILD;
-               return -1;
-       }
-       if ( RetVal == WAIT_OBJECT_0 ) {
-               GetExitCodeProcess((HANDLE)procHandle, termstat);
-               return procHandle;
-       }
-
-
-       return -1;
-       // WAIT_TIMEOUT
-}
diff --git a/reactos/lib/crtdll/process/System.c b/reactos/lib/crtdll/process/System.c
deleted file mode 100644 (file)
index f8c9bad..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <process.h>
-#include <windows.h>
-
-int system(const char *command)
-{
-       char CmdLine[MAX_PATH];
-       char *comspec = getenv("COMSPEC");
-       if ( comspec == NULL )
-               comspec = "cmd.exe";
-       strcpy(CmdLine,comspec);
-       strcat(CmdLine," /C ");
-       if ( !WinExec(CmdLine,SW_SHOWNORMAL) < 31 )
-               return -1;
-
-       return 0;
-}