blob: f57617bfab10fc1a18a10cf1be6015980e2261e9 (
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>
/* AMOVR -- Copy a block of memory.
* [Specially optimized for Sun/IRAF].
*/
AMOVR (a, b, n)
XREAL *a, *b;
XINT *n;
{
memmove ((char *)b, (char *)a, *n * sizeof(*a));
}
|