pkgsrc/pkgtools/rcorder/files/ealloc.h
schmonz 80c075588d Initial import of rcorder from NetBSD-current, using libnbcompat.
rcorder is designed to print out a dependency ordering of a set of
interdependent files. Typically it is used to find an execution
sequence for a set of shell scripts in which certain files must be
executed before others.
2004-08-27 01:49:15 +00:00

6 lines
184 B
C

/* $NetBSD: ealloc.h,v 1.1.1.1 2004/08/27 01:49:16 schmonz Exp $ */
void *emalloc(size_t);
char *estrdup(const char *);
void *erealloc(void *, size_t);
void *ecalloc(size_t, size_t);