/* ISC license. */ #include #ifdef SKALIBS_FLAG_REPLACE_LIBC #include void byte_copyr (register char *to, register unsigned int n, register char const *from) { to += n ; from += n ; for (;;) { if (!n) return; *--to = *--from; --n; if (!n) return; *--to = *--from; --n; if (!n) return; *--to = *--from; --n; if (!n) return; *--to = *--from; --n; } } #endif