diff options
Diffstat (limited to 'agbx/source/algo/cp.c')
-rw-r--r-- | agbx/source/algo/cp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/agbx/source/algo/cp.c b/agbx/source/algo/cp.c index 651abd8..347b55d 100644 --- a/agbx/source/algo/cp.c +++ b/agbx/source/algo/cp.c @@ -4,11 +4,11 @@ If a copy of the MPL was not distributed with this file, You can obtain one at https://mozilla.org/MPL/2.0/. */ -#include <agbx/priv.h> +#include <ax/priv.h> -#include <agbx/algo.h> +#include <ax/algo.h> -void agbx_cp(void const * const _src,agbx_i20 const _num,void * const _dest) { +void ax_cp(void const * const _src,ax_i20 const _num,void * const _dest) { unsigned char const * src = _src; unsigned char * dest = _dest; unsigned char const * const aftersrc = src + _num; |