diff options
author | Alexis211 <alexis211@gmail.com> | 2010-02-05 21:35:38 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2010-02-05 21:35:38 +0100 |
commit | 3558f18daf50281ee1cd68cca96cd967dbac04ba (patch) | |
tree | cbe73621cdd2f481ed6f985aeb532ca1f7a7ad77 /src/stem/lib/stdlib.c | |
parent | 893244c8b5272df86da5d333332eec26ae8f15f2 (diff) | |
download | TCE-3558f18daf50281ee1cd68cca96cd967dbac04ba.tar.gz TCE-3558f18daf50281ee1cd68cca96cd967dbac04ba.zip |
Everything seems to work : loading a module that displays a message.
Diffstat (limited to 'src/stem/lib/stdlib.c')
-rw-r--r-- | src/stem/lib/stdlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stem/lib/stdlib.c b/src/stem/lib/stdlib.c index f4ebd33..c5245e7 100644 --- a/src/stem/lib/stdlib.c +++ b/src/stem/lib/stdlib.c @@ -1,7 +1,7 @@ #include "stdlib.h" void *memcpy(void *vd, const void *vs, int count) { - uint8_t *dest = vd, *src = vs; + uint8_t *dest = (uint8_t*)vd, *src = (uint8_t*)vs; uint32_t f = count % 4, n = count / 4, i; const uint32_t* s = (uint32_t*)src; uint32_t* d = (uint32_t*)dest; |