comparison src/sysproc.h @ 5643:611a6845ebee

Remove un-needed include of process.h in sysproc.h under cygwin.
author Vin Shelton <acs@xemacs.org>
date Mon, 13 Feb 2012 08:00:23 -0500
parents 308d34e9f07d
children b58b74274fa2
comparison
equal deleted inserted replaced
5642:5bda701e9e7c 5643:611a6845ebee
28 #include <sys/resource.h> 28 #include <sys/resource.h>
29 #endif 29 #endif
30 30
31 #ifdef MINGW 31 #ifdef MINGW
32 #include <../mingw/process.h> 32 #include <../mingw/process.h>
33 #elif defined (CYGWIN)
34 #include <../include/process.h>
35 #elif defined (WIN32_NATIVE) 33 #elif defined (WIN32_NATIVE)
36 /* <process.h> should not conflict with "process.h", as per ANSI definition. 34 /* <process.h> should not conflict with "process.h", as per ANSI definition.
37 This is not true with visual c though. The trick below works with 35 This is not true with visual c though. The trick below works with
38 VC4.2b, 5.0 and 6.0. It assumes that VC is installed in a kind of 36 VC4.2b, 5.0 and 6.0. It assumes that VC is installed in a kind of
39 standard way, so include path ends with /include. 37 standard way, so include path ends with /include.