Author: faridz
Date: Tue Oct 30 12:01:06 2007
New Revision: 590270

URL: http://svn.apache.org/viewvc?rev=590270&view=rev
Log:
2007-10-30 Farid Zaripov <[EMAIL PROTECTED]>

        * exec.cpp [!_WIN32 && !_RWSTD_NO_PURE_C_HEADERS] (kill, fdopen):
        Skip the functions declaration on Windows.

Modified:
    incubator/stdcxx/branches/4.2.x/util/exec.cpp

Modified: incubator/stdcxx/branches/4.2.x/util/exec.cpp
URL: 
http://svn.apache.org/viewvc/incubator/stdcxx/branches/4.2.x/util/exec.cpp?rev=590270&r1=590269&r2=590270&view=diff
==============================================================================
--- incubator/stdcxx/branches/4.2.x/util/exec.cpp (original)
+++ incubator/stdcxx/branches/4.2.x/util/exec.cpp Tue Oct 30 12:01:06 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 */
 
 
 /**


Reply via email to