You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by fa...@apache.org on 2007/10/30 20:02:49 UTC

svn commit: r590272 - /incubator/stdcxx/trunk/util/exec.cpp

Author: faridz
Date: Tue Oct 30 12:02:48 2007
New Revision: 590272

URL: http://svn.apache.org/viewvc?rev=590272&view=rev
Log:
2007-10-30 Farid Zaripov <fa...@epam.com>

	Merged r590270 from branches/4.2.x
	* exec.cpp [!_WIN32 && !_RWSTD_NO_PURE_C_HEADERS] (kill, fdopen):
	Skip the functions declaration on Windows.

Modified:
    incubator/stdcxx/trunk/util/exec.cpp

Modified: incubator/stdcxx/trunk/util/exec.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/util/exec.cpp?rev=590272&r1=590271&r2=590272&view=diff
==============================================================================
--- incubator/stdcxx/trunk/util/exec.cpp (original)
+++ incubator/stdcxx/trunk/util/exec.cpp Tue Oct 30 12:02:48 2007
@@ -108,7 +108,7 @@
 
 #include "exec.h"
 
-#ifndef _RWSTD_NO_PURE_C_HEADERS
+#if !defined (_WIN32) && !defined (_RWSTD_NO_PURE_C_HEADERS)
 #  ifdef __cplusplus
 extern "C" {
 #  endif
@@ -120,7 +120,7 @@
 #  ifdef __cplusplus
 }   /* extern "C" */
 #  endif
-#endif   /* _RWSTD_NO_PURE_C_HEADERS */
+#endif   /* !_WIN32 && !_RWSTD_NO_PURE_C_HEADERS */
 
 
 /**