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

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

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