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
08432663
Commit
08432663
authored
Oct 27, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(bsd/sys/wait.h): Undo previous change.
From-SVN: r5919
parent
0736d253
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
21 deletions
+4
-21
gcc/fixincludes
+4
-21
No files found.
gcc/fixincludes
View file @
08432663
...
...
@@ -1001,7 +1001,10 @@ if [ -r ${LIB}/$file ]; then
fi
fi
# NeXT defines 'int wait(union wait*)', which conflicts with Posix.1.
# NeXT 2.0 defines 'int wait(union wait*)', which conflicts with Posix.1.
# Note that version 3 of the NeXT system has wait.h in a different directory,
# so that this code won't do anything. But wait.h in version 3 has a
# conditional, so it doesn't need this fix. So everything is okay.
file
=
sys/wait.h
if
[
-r
$file
]
&&
[
!
-r
${
LIB
}
/
$file
]
;
then
cp
$file
${
LIB
}
/
$file
>
/dev/null 2>&1
||
echo
"Can't copy
$file
"
...
...
@@ -1018,26 +1021,6 @@ if [ -r ${LIB}/$file ] \
fi
fi
# Some versions of NeXTStep apparently have the file fixed above in
# bsd/sys/wait.h, instead.
file
=
bsd/sys/wait.h
if
[
-r
$file
]
&&
[
!
-r
${
LIB
}
/
$file
]
;
then
mkdir
${
LIB
}
/bsd 2>/dev/null
mkdir
${
LIB
}
/bsd/sys 2>/dev/null
cp
$file
${
LIB
}
/
$file
>
/dev/null 2>&1
||
echo
"Can't copy
$file
"
chmod +w
${
LIB
}
/
$file
2>/dev/null
fi
if
[
-r
${
LIB
}
/
$file
]
\
&&
grep
'wait[(]union wait'
${
LIB
}
/
$file
>
/dev/null
;
then
echo
Fixing
$file
, bad
wait
formal
sed
-e
's@wait(union wait@wait(void@'
${
LIB
}
/
$file
>
${
LIB
}
/
${
file
}
.sed
rm
-f
${
LIB
}
/
$file
;
mv
${
LIB
}
/
${
file
}
.sed
${
LIB
}
/
$file
if
cmp
$file
${
LIB
}
/
$file
>
/dev/null 2>&1
;
then
rm
-f
${
LIB
}
/
$file
fi
fi
# Don't use or define the name va_list in stdio.h.
# This is for ANSI and also to interoperate properly with gvarargs.h.
file
=
stdio.h
...
...
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