diff options
| author | forsyth <forsyth@vitanuova.com> | 2013-09-07 11:32:50 +0100 |
|---|---|---|
| committer | forsyth <forsyth@vitanuova.com> | 2013-09-07 11:32:50 +0100 |
| commit | 715a866f4203b352703247b51de6e9e29894384b (patch) | |
| tree | 25bb12c7033cd75b28a46b92b839c7c9505e2c0f | |
| parent | 86c8d15162050ac1bbb2de38961263da3a4b1f87 (diff) | |
20130907-1132
| -rw-r--r-- | CHANGES | 2 | ||||
| -rw-r--r-- | include/version.h | 2 | ||||
| -rw-r--r-- | libkern/memmove.c | 14 |
3 files changed, 3 insertions, 15 deletions
@@ -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; -} -*/ - |
