Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
f2e13171
Commit
f2e13171
authored
28 years ago
by
Doug Evans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pexecute.c: Update test for win32 (&& ! cygwin32).
From-SVN: r12656
parent
a7521e65
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
gcc/pexecute.c
+5
-4
No files found.
gcc/pexecute.c
View file @
f2e13171
...
...
@@ -217,7 +217,7 @@ pwait (pid, status, flags)
#endif
/* MSDOS */
#if
def _WIN32
#if
defined (_WIN32) && !defined (__CYGWIN32__)
#include <process.h>
/* ??? Why are these __spawnv{,p} and not _spawnv{,p}? */
...
...
@@ -440,8 +440,9 @@ pfinish ()
#endif
/* MPW */
#if ! defined (__MSDOS__) && ! defined (_WIN32) && ! defined (OS2) \
&& ! defined (MPW)
/* include for Unix-like environments but not for Dos-like environments */
#if ! defined (__MSDOS__) && ! defined (OS2) && ! defined (MPW) \
&& (defined (__CYGWIN32__) || ! defined (_WIN32))
#ifdef USG
#define vfork fork
...
...
@@ -578,4 +579,4 @@ pwait (pid, status, flags)
return
pid
;
}
#endif
/* !
MSDOS && !WIN32 && !OS2 && !MPW
*/
#endif
/* !
__MSDOS__ && ! OS2 && ! MPW && (__CYGWIN32___ || ! _WIN32)
*/
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment