summaryrefslogtreecommitdiffstats
path: root/bin/sh/nodetypes
diff options
context:
space:
mode:
authorjilles <jilles@FreeBSD.org>2013-11-01 11:28:56 +0000
committerjilles <jilles@FreeBSD.org>2013-11-01 11:28:56 +0000
commit4d075e1cc9b6b96e94e52889a1c10d4610f9ea3c (patch)
tree4cc3ced437f4eaad6bbf32501ab8d33a4f68d9b1 /bin/sh/nodetypes
parent1a402f591250fa6d01f5f548acca7b3a6269d279 (diff)
downloadFreeBSD-src-4d075e1cc9b6b96e94e52889a1c10d4610f9ea3c.zip
FreeBSD-src-4d075e1cc9b6b96e94e52889a1c10d4610f9ea3c.tar.gz
sh: Reorder union node to reduce its size on 64-bit platforms.
Diffstat (limited to 'bin/sh/nodetypes')
-rw-r--r--bin/sh/nodetypes6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/sh/nodetypes b/bin/sh/nodetypes
index 5e70c64..603c777 100644
--- a/bin/sh/nodetypes
+++ b/bin/sh/nodetypes
@@ -118,16 +118,16 @@ NFROMTO nfile # fd<> fname
NAPPEND nfile # fd>> fname
NCLOBBER nfile # fd>| fname
type int
- next nodeptr # next redirection in list
fd int # file descriptor being redirected
+ next nodeptr # next redirection in list
fname nodeptr # file name, in a NARG node
expfname temp char *expfname # actual file name
NTOFD ndup # fd<&dupfd
NFROMFD ndup # fd>&dupfd
type int
- next nodeptr # next redirection in list
fd int # file descriptor being redirected
+ next nodeptr # next redirection in list
dupfd int # file descriptor to duplicate
vname nodeptr # file name if fd>&$var
@@ -135,8 +135,8 @@ NFROMFD ndup # fd>&dupfd
NHERE nhere # fd<<\!
NXHERE nhere # fd<<!
type int
- next nodeptr # next redirection in list
fd int # file descriptor being redirected
+ next nodeptr # next redirection in list
doc nodeptr # input to command (NARG node)
expdoc temp char *expdoc # actual document (for NXHERE)
OpenPOWER on IntegriCloud