diff options
Diffstat (limited to 'unix/as.ssol/amovi.c')
-rw-r--r-- | unix/as.ssol/amovi.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/unix/as.ssol/amovi.c b/unix/as.ssol/amovi.c new file mode 100644 index 00000000..ff61c96d --- /dev/null +++ b/unix/as.ssol/amovi.c @@ -0,0 +1,16 @@ +/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + */ + +#define import_spp +#define import_knames +#include <iraf.h> + +/* AMOVI -- Copy a block of memory. + * [Specially optimized for Sun/IRAF]. + */ +AMOVI (a, b, n) +XINT *a, *b; +XINT *n; +{ + memmove ((char *)b, (char *)a, *n * sizeof(*a)); +} |