summaryrefslogtreecommitdiff
path: root/dviware/beebe/src/tops20/zrmkcc.c
diff options
context:
space:
mode:
Diffstat (limited to 'dviware/beebe/src/tops20/zrmkcc.c')
-rw-r--r--dviware/beebe/src/tops20/zrmkcc.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/dviware/beebe/src/tops20/zrmkcc.c b/dviware/beebe/src/tops20/zrmkcc.c
new file mode 100644
index 0000000000..ead3001ac0
--- /dev/null
+++ b/dviware/beebe/src/tops20/zrmkcc.c
@@ -0,0 +1,13 @@
+/* -*-C-*- zerom.c */
+/*-->zerom*/
+/**********************************************************************/
+/******************************* zerom *******************************/
+/**********************************************************************/
+
+void
+zerom(to, count)
+int *to, count;
+{
+ while (count-- > 0)
+ *to++ = 0;
+}