9d62501fd8
Note that `rc' and `rc.shutdown' could not be imported because we already have files with those names.
7 lines
230 B
C
7 lines
230 B
C
/* $NetBSD: ealloc.h,v 1.1.1.1 1999/11/19 04:30:56 mrg Exp $ */
|
|
|
|
void *emalloc __P((size_t len));
|
|
char *estrdup __P((const char *str));
|
|
void *erealloc __P((void *ptr, size_t size));
|
|
void *ecalloc __P((size_t nmemb, size_t size));
|