aboutsummaryrefslogtreecommitdiff
path: root/unix/as.freebsd/aclrc.c
blob: 04e0e19bbd6a3534575de2a8887ce04e33297e6e (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>

/* ACLRC -- Clear a block of memory.
 * [Specially optimized for Sun/IRAF].
 */
ACLRC (a, n)
XCHAR	*a;
XINT	*n;
{
	memset ((char *)a, 0, *n * sizeof(*a));
}