diff options
Diffstat (limited to 'src/libstddjb/bufalloc_clean.c')
-rw-r--r-- | src/libstddjb/bufalloc_clean.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstddjb/bufalloc_clean.c b/src/libstddjb/bufalloc_clean.c index 79b5880..2b78f39 100644 --- a/src/libstddjb/bufalloc_clean.c +++ b/src/libstddjb/bufalloc_clean.c @@ -1,13 +1,13 @@ /* ISC license. */ -#include <skalibs/bytestr.h> +#include <string.h> #include <skalibs/bufalloc.h> void bufalloc_clean (register bufalloc *ba) { if (ba->p) { - byte_copy(ba->x.s, ba->x.len - ba->p, ba->x.s + ba->p) ; + memmove(ba->x.s, ba->x.s + ba->p, ba->x.len - ba->p) ; ba->x.len -= ba->p ; ba->p = 0 ; } |