00001 /* 00002 (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands. 00003 See the copyright notice in the ACK home directory, in the file "Copyright". 00004 */ 00005 00006 /* 00007 Module: block moves 00008 Author: Ceriel J.H. Jacobs 00009 Version: $Header: /opt/proj/minix/cvsroot/src/lib/ack/libm2/blockmove.c,v 1.1 2005/10/10 15:27:46 beng Exp $ 00010 */ 00011 00012 #if _EM_WSIZE==_EM_PSIZE 00013 typedef unsigned pcnt; 00014 #else 00015 typedef unsigned long pcnt; 00016 #endif 00017 00018 blockmove(siz, dst, src) 00019 pcnt siz; 00020 register char *dst, *src; 00021 { 00022 while (siz--) *dst++ = *src++; 00023 }
1.4.6