Index: lib700/blkfill.s
===================================================================
--- lib700/blkfill.s	(revision 4cfe69aa0cc00430379e3934cf85c7a661bf1769)
+++ lib700/blkfill.s	(revision 84c01255fcf53ea395d67ce5468972fe0ba4aca6)
@@ -5,5 +5,5 @@
 |	void
 |	blkfill(where, what, count)
-|	char |where;
+|	char *where;
 |	char what;
 |	short count;
Index: lib700/blkmove.s
===================================================================
--- lib700/blkmove.s	(revision 4cfe69aa0cc00430379e3934cf85c7a661bf1769)
+++ lib700/blkmove.s	(revision 84c01255fcf53ea395d67ce5468972fe0ba4aca6)
@@ -5,5 +5,5 @@
 |	void
 |	blkmove(to, from, n)
-|	char |to, |from;
+|	char *to, *from;
 |	short n;
 
Index: lib700/rand24.s
===================================================================
--- lib700/rand24.s	(revision 4cfe69aa0cc00430379e3934cf85c7a661bf1769)
+++ lib700/rand24.s	(revision 84c01255fcf53ea395d67ce5468972fe0ba4aca6)
@@ -13,5 +13,5 @@
 
 | Computes:
-|		S = [S | C] + K
+|		S = [S * C] + K
 
 | Where:
