From cbfcb39874d97238abccb006b6acf2b2f78b2e65 Mon Sep 17 00:00:00 2001 From: Juli Mallett Date: Wed, 23 Oct 2002 23:16:43 +0000 Subject: Remove efree(), it isn't used consistently enough to even pretend that it might help on the systems it could possibly be used as a bandaid for. In fact, the only thing it's useful for is instrumenting free(3) calls, and in that capacity, it's better served as a local patch, than a public wrapper. --- usr.bin/make/cond.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin/make/cond.c') diff --git a/usr.bin/make/cond.c b/usr.bin/make/cond.c index a6eb9a925ad0..6f82ecbee3ea 100644 --- a/usr.bin/make/cond.c +++ b/usr.bin/make/cond.c @@ -284,7 +284,7 @@ CondDoDefined (int argLen, char *arg) } else { result = FALSE; } - efree(p1); + free(p1); arg[argLen] = savec; return (result); } -- cgit v1.3