summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorforsyth <forsyth@vitanuova.com>2013-09-07 11:32:50 +0100
committerforsyth <forsyth@vitanuova.com>2013-09-07 11:32:50 +0100
commit715a866f4203b352703247b51de6e9e29894384b (patch)
tree25bb12c7033cd75b28a46b92b839c7c9505e2c0f
parent86c8d15162050ac1bbb2de38961263da3a4b1f87 (diff)
20130907-1132
-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;
-}
-*/
-