blob: 0ad8e775ae7410881e4f45c7c8282833bee1643f (
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>
/* ACLRB -- Clear a block of memory.
* [Specially optimized for Sun/IRAF].
*/
ACLRB (a, n)
XCHAR *a;
XINT *n;
{
bzero ((char *)a, *n);
}
|