blob: 7d5b8adaa3e40eed632463e7b761ae0561e5f27f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
*/
#define import_spp
#define import_knames
#include <iraf.h>
/* ACLRI -- Clear a block of memory.
* [Specially optimized for Sun/IRAF].
*/
ACLRI (a, n)
XINT *a;
XINT *n;
{
memset ((char *)a, 0, *n * sizeof(*a));
}
|