summaryrefslogtreecommitdiff
path: root/usr.bin/make/make.h
diff options
context:
space:
mode:
authorrillig <rillig@NetBSD.org>2020-11-28 19:16:53 +0000
committerrillig <rillig@NetBSD.org>2020-11-28 19:16:53 +0000
commit8266d24efaed0e5eea0111cbf4256f1497efd162 (patch)
tree44031db008713fcfc35b036dd00a4822a5cc7282 /usr.bin/make/make.h
parent999aef61111dcae32ba38cc335c289bf26a4e5b4 (diff)
make(1): reduce pointer indirection for GNode.order_pred and order_succ
Diffstat (limited to 'usr.bin/make/make.h')
-rw-r--r--usr.bin/make/make.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/make.h b/usr.bin/make/make.h
index 55086a3f880..4c8cdd05c2c 100644
--- a/usr.bin/make/make.h
+++ b/usr.bin/make/make.h
@@ -1,4 +1,4 @@
-/* $NetBSD: make.h,v 1.222 2020/11/28 19:12:28 rillig Exp $ */
+/* $NetBSD: make.h,v 1.223 2020/11/28 19:16:53 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -394,11 +394,11 @@ typedef struct GNode {
/* .ORDER nodes we need made. The nodes that must be made (if they're
* made) before this node can be made, but that do not enter into the
* datedness of this node. */
- GNodeList *order_pred;
+ GNodeList order_pred;
/* .ORDER nodes who need us. The nodes that must be made (if they're
* made at all) after this node is made, but that do not depend on
* this node, in the normal sense. */
- GNodeList *order_succ;
+ GNodeList order_succ;
/* Other nodes of the same name, for the '::' dependency operator. */
GNodeList *cohorts;