Skip to content

Commit 28f540f

Browse files
author
Roland McGrath
committed
initial import
0 parents  commit 28f540f

File tree

2,263 files changed

+218361
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,263 files changed

+218361
-0
lines changed

.cvsignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
*.gz *.Z *.tar *.tgz
2+
=*
3+
TODO COPYING* AUTHORS copyr-* copying.*
4+
glibc-*
5+
6+
configparms
7+
8+
sun4 i386 i386-gnuelf hp300-netbsd hp300
9+
10+
ieeetest hppa-sysdeps regex

=__ify

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
for func in $*; do
2+
for file in `find sysdeps -name "${func}.c"`;
3+
do
4+
script=/tmp/foo$$;
5+
( echo "%s/${func}/__&/g";
6+
echo x )>$script ;
7+
ex $file <$script ;
8+
newfile=`echo $file | sed "s/${func}/__&/"`;
9+
mv $file $newfile;
10+
echo $newfile;
11+
done
12+
done

0 commit comments

Comments
 (0)