diff options
| author | Diomidis Spinellis <dds@FreeBSD.org> | 2003-07-05 15:18:44 +0000 |
|---|---|---|
| committer | Diomidis Spinellis <dds@FreeBSD.org> | 2003-07-05 15:18:44 +0000 |
| commit | 2ba1b30bf50f04ab147452cfba7a3b9899f1d59c (patch) | |
| tree | b3c2aa55b49d1fcca627aec69e1e5a16b264b51d /bin/sh/expand.c | |
| parent | cf3574284719d98bca0fa10588677f35f2e8202f (diff) | |
Notes
Diffstat (limited to 'bin/sh/expand.c')
| -rw-r--r-- | bin/sh/expand.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/sh/expand.c b/bin/sh/expand.c index 214f53a9b224..4ff7427c7b96 100644 --- a/bin/sh/expand.c +++ b/bin/sh/expand.c @@ -90,11 +90,11 @@ struct ifsregion { }; -char *expdest; /* output of current string */ -struct nodelist *argbackq; /* list of back quote expressions */ -struct ifsregion ifsfirst; /* first struct in list of ifs regions */ -struct ifsregion *ifslastp; /* last struct in list */ -struct arglist exparg; /* holds expanded arg list */ +STATIC char *expdest; /* output of current string */ +STATIC struct nodelist *argbackq; /* list of back quote expressions */ +STATIC struct ifsregion ifsfirst; /* first struct in list of ifs regions */ +STATIC struct ifsregion *ifslastp; /* last struct in list */ +STATIC struct arglist exparg; /* holds expanded arg list */ STATIC void argstr(char *, int); STATIC char *exptilde(char *, int); @@ -1055,7 +1055,7 @@ ifsbreakup(char *string, struct arglist *arglist) * should be escapes. The results are stored in the list exparg. */ -char *expdir; +STATIC char *expdir; STATIC void |
