mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
Note that `rc' and `rc.shutdown' could not be imported because we already have files with those names.
6 lines
230 B
C
6 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));
|