summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--include/version.h2
-rw-r--r--libkern/memmove.c14
3 files changed, 3 insertions, 15 deletions
diff --git a/CHANGES b/CHANGES
index e28b1fac..7739898b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+20130906
+ remove redundant code
20130529
appl/cmd/cpu.b: use Dial, and neither test /dev/draw/new nor bind #d (which is wrong anyway, it's #i for drawing now)
20130423
diff --git a/include/version.h b/include/version.h
index 891c383b..cedf0c41 100644
--- a/include/version.h
+++ b/include/version.h
@@ -1 +1 @@
-#define VERSION "Fourth Edition (20130529)"
+#define VERSION "Fourth Edition (20130906)"
diff --git a/libkern/memmove.c b/libkern/memmove.c
index a1455f51..5a1350e2 100644
--- a/libkern/memmove.c
+++ b/libkern/memmove.c
@@ -27,17 +27,3 @@ memmove(void *a1, void *a2, ulong n)
}
return a1;
}
-
-/*
-void
-memset(void *a1, int c, ulong n)
-{
- int m = (int)n;
- uchar *d;
-
- d = a1;
- while(--m >= 0)
- *d++ = c;
-}
-*/
-