diff options
Diffstat (limited to 'unix/as.rs6000/amovl.c')
-rw-r--r-- | unix/as.rs6000/amovl.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/unix/as.rs6000/amovl.c b/unix/as.rs6000/amovl.c new file mode 100644 index 00000000..e125c081 --- /dev/null +++ b/unix/as.rs6000/amovl.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> + +/* AMOVL -- Copy a block of memory. + * [Specially optimized for Sun/IRAF]. + */ +AMOVL (a, b, n) +XLONG *a, *b; +XINT *n; +{ + bcopy ((char *)a, (char *)b, *n * sizeof(*a)); +} |