80c075588d
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.
6 lines
184 B
C
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);
|