Commit cafe4d20 by Richard Stallman

(sys/stat.h): Don't change definitions into

prototypes if they may already be in prototype form.

From-SVN: r5936
parent a0735e3b
...@@ -1127,28 +1127,28 @@ if [ \! -z "$file_to_fix" ]; then ...@@ -1127,28 +1127,28 @@ if [ \! -z "$file_to_fix" ]; then
echo Checking $file_to_fix echo Checking $file_to_fix
cp $file_to_fix /tmp/$base cp $file_to_fix /tmp/$base
chmod +w /tmp/$base chmod +w /tmp/$base
sed -e '/^stat(/{ sed -e '/^stat([ ]*[^c]/{
N N
N N
s/(.*)\n/( / s/(.*)\n/( /
s/;\n/, / s/;\n/, /
s/;$/)/ s/;$/)/
}' \ }' \
-e '/^lstat(/{ -e '/^lstat([ ]*[^c]/{
N N
N N
s/(.*)\n/( / s/(.*)\n/( /
s/;\n/, / s/;\n/, /
s/;$/)/ s/;$/)/
}' \ }' \
-e '/^fstat(/{ -e '/^fstat([ ]*[^i]/{
N N
N N
s/(.*)\n/( / s/(.*)\n/( /
s/;\n/, / s/;\n/, /
s/;$/)/ s/;$/)/
}' \ }' \
-e '/^mknod(/{ -e '/^mknod([ ]*[^c]/{
N N
N N
N N
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment