about summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-09-06 22:16:55 +0000
committerUlrich Drepper <drepper@redhat.com>1999-09-06 22:16:55 +0000
commit39d31947cfc072d319ed5c5e69a0dfcd9c98e7d5 (patch)
treeaeac85e24cf537be551f04272559a0943ef45ea4 /scripts
parent7fcc87f4673c79e7dbcc7d972e646383b5e47ce3 (diff)
downloadglibc-39d31947cfc072d319ed5c5e69a0dfcd9c98e7d5.tar.gz
glibc-39d31947cfc072d319ed5c5e69a0dfcd9c98e7d5.tar.xz
glibc-39d31947cfc072d319ed5c5e69a0dfcd9c98e7d5.zip
Update.
1999-09-06  Ulrich Drepper  <drepper@cygnus.com>

	* time/ap.c: Removed.  It was not used.
	* time/date.c: Likewise.
	* sysdeps/unix/nlist.c: Likewise.
	* sysdeps/generic/nlist.c: Likewise.
	* sysdeps/generic/varargs.h: Likewise.
	* stdio-common/scanf11.c: Likewise.
	* stdio-common/scanf6.c: Likewise.
	* scripts/=__ify: Likewise.
	* scripts/printsources: Likewise.
	* resolv/getnetnamadr.c: Likewise.
	* posix/id.c: Likewise.
	* misc/ioctltst.c: Likewise.
	* misc/nlist.h: Likewise.
	* math/test-math.h: Likewise.
	* include/nlist.h: Likewise.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/=__ify12
-rwxr-xr-xscripts/printsources29
2 files changed, 0 insertions, 41 deletions
diff --git a/scripts/=__ify b/scripts/=__ify
deleted file mode 100755
index 017d909a1a..0000000000
--- a/scripts/=__ify
+++ /dev/null
@@ -1,12 +0,0 @@
-for func in $*; do
-    for file in `find sysdeps -name "${func}.c"`;
-    do
-        script=/tmp/foo$$;
-        ( echo "%s/${func}/__&/g";
-        echo x )>$script ;
-        ex $file <$script ;
-        newfile=`echo $file | sed "s/${func}/__&/"`;
-        mv $file $newfile;
-        echo $newfile;
-    done
-done
diff --git a/scripts/printsources b/scripts/printsources
deleted file mode 100755
index 062b837c5a..0000000000
--- a/scripts/printsources
+++ /dev/null
@@ -1,29 +0,0 @@
-#! /bin/csh -f
-
-#
-#	Prints all the files given as arguments.
-#	Files that will fit on less than a printed page
-#	are concatenated together.  Bigger ones are pr'd.
-#
-
-
-set tocat='' topr=''
-
-foreach file ($*)
-	set lines=`wc -l $file | sed "s/$file//"`
-	if ($lines > 40) then
-		set topr=($topr $file)
-	else
-		set tocat=($tocat $file)
-	endif
-end
-
-
-if ("$topr" != '') pr $topr
-
-if ("$tocat" != '') foreach file ($tocat)
-	echo -n "==================== $file ======================"
-	cat $file
-end
-
-exit 0