-/*
- * Define a wrapper for bcopy to defeat destination size checka.
- * This is needed to treat repeated objects such as
- * _STRUCT_XMM_REG fpu_ymmh0;
- * ...
- * _STRUCT_XMM_REG fpu_ymmh7;
- * as an array and to copy like so:
- * bcopy_nockch(src,&dst->fpu_ymmh0,8*sizeof(_STRUCT_XMM_REG));
- * without the compiler throwing a __builtin__memmove_chk error.
- */
-static inline void
-bcopy_nochk(void *_src, void *_dst, size_t _len)
-{
- bcopy(_src, _dst, _len);
-}