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