From 715a866f4203b352703247b51de6e9e29894384b Mon Sep 17 00:00:00 2001 From: forsyth Date: Sat, 7 Sep 2013 11:32:50 +0100 Subject: 20130907-1132 --- CHANGES | 2 ++ include/version.h | 2 +- libkern/memmove.c | 14 -------------- 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; -} -*/ - -- cgit v1.2.3