From fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 8 Jul 2015 20:46:52 -0400 Subject: Initial commit --- unix/as.sparc/amovd.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 unix/as.sparc/amovd.c (limited to 'unix/as.sparc/amovd.c') diff --git a/unix/as.sparc/amovd.c b/unix/as.sparc/amovd.c new file mode 100644 index 00000000..a56f3c09 --- /dev/null +++ b/unix/as.sparc/amovd.c @@ -0,0 +1,16 @@ +/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + */ + +#define import_spp +#define import_knames +#include + +/* AMOVD -- Copy a block of memory. + * [Specially optimized for Sun/IRAF]. + */ +AMOVD (a, b, n) +XDOUBLE *a, *b; +XINT *n; +{ + bcopy ((char *)a, (char *)b, *n * sizeof(*a)); +} -- cgit