summaryrefslogtreecommitdiffstats
path: root/usr.bin/make/job.c
diff options
context:
space:
mode:
authorjmallett <jmallett@FreeBSD.org>2002-10-23 23:16:43 +0000
committerjmallett <jmallett@FreeBSD.org>2002-10-23 23:16:43 +0000
commit435bfdfa4436731362eb9fac66643198e6e238e4 (patch)
treebbd5e7ccf4fc366bc27a8cad8364cb37e593aa28 /usr.bin/make/job.c
parentd98de7a2cf71a2e2d7fa1681696f9e0784cf85a5 (diff)
downloadFreeBSD-src-435bfdfa4436731362eb9fac66643198e6e238e4.zip
FreeBSD-src-435bfdfa4436731362eb9fac66643198e6e238e4.tar.gz
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.
Diffstat (limited to 'usr.bin/make/job.c')
-rw-r--r--usr.bin/make/job.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c
index d83f8eb..b25edd8 100644
--- a/usr.bin/make/job.c
+++ b/usr.bin/make/job.c
@@ -1070,7 +1070,7 @@ Job_CheckCommands(GNode *gn, void (*abortProc)(const char *, ...))
*/
Make_HandleUse(DEFAULT, gn);
Var_Set(IMPSRC, Var_Value(TARGET, gn, &p1), gn);
- efree(p1);
+ free(p1);
} else if (Dir_MTime(gn) == 0) {
/*
* The node wasn't the target of an operator we have no .DEFAULT
OpenPOWER on IntegriCloud