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.rs6000/aclrb.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 unix/as.rs6000/aclrb.c (limited to 'unix/as.rs6000/aclrb.c') diff --git a/unix/as.rs6000/aclrb.c b/unix/as.rs6000/aclrb.c new file mode 100644 index 00000000..0ad8e775 --- /dev/null +++ b/unix/as.rs6000/aclrb.c @@ -0,0 +1,16 @@ +/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + */ + +#define import_spp +#define import_knames +#include + +/* ACLRB -- Clear a block of memory. + * [Specially optimized for Sun/IRAF]. + */ +ACLRB (a, n) +XCHAR *a; +XINT *n; +{ + bzero ((char *)a, *n); +} -- cgit