aboutsummaryrefslogtreecommitdiff
path: root/unix/as.mc68020/amovl.c
blob: 2d8be93b6d50a1b6299a280c15bfd9b5f9a8d113 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
 */

#define import_spp
#define import_knames
#include <iraf.h>

/* AMOVL -- Copy a block of memory.
 * [Specially optimized for Sun/IRAF].
 */
AMOVL (a, b, n)
XLONG	*a, *b;
XINT	*n;
{
	if (a != b)
	    bcopy ((char *)a, (char *)b, *n * sizeof(*a));
}