]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Remove Woe32 stub.
authorBruno Haible <bruno@clisp.org>
Mon, 7 Apr 2003 10:39:11 +0000 (10:39 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:10:21 +0000 (12:10 +0200)
gettext-tools/lib/wait-process.c

index ef393a69a8b1c8be70964a03066439c6aafcf29b..df257639fd189f8f500e190fcd46eab57e137c1d 100644 (file)
 
 #if defined _MSC_VER || defined __MINGW32__
 
-/* Native Woe32 API.  */
-
-int
-wait_subprocess (pid_t child, const char *progname, bool exit_on_error)
-{
-  /* Not yet implemented.  Should probably use _cwait.  */
-  return 127;
-}
-
-#else
-
-/* Unix API.  */
-
-#if defined _MSC_VER || defined __MINGW32__
-
 /* Native Woe32 API.  */
 #include <process.h>
 #define waitpid(pid,statusp,options) _cwait (statusp, pid, WAIT_CHILD)
@@ -165,5 +150,3 @@ wait_subprocess (pid_t child, const char *progname, bool exit_on_error)
     }
   return WEXITSTATUS (status);
 }
-
-#endif /* Woe32 / Unix */