From: Bruno Haible Date: Mon, 7 Apr 2003 10:39:11 +0000 (+0000) Subject: Remove Woe32 stub. X-Git-Tag: v0.12~99 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=906c33bfc15723544fb52531bbae4be8c2113f39;p=thirdparty%2Fgettext.git Remove Woe32 stub. --- diff --git a/gettext-tools/lib/wait-process.c b/gettext-tools/lib/wait-process.c index ef393a69a..df257639f 100644 --- a/gettext-tools/lib/wait-process.c +++ b/gettext-tools/lib/wait-process.c @@ -31,21 +31,6 @@ #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 #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 */