diff options
author | jilles <jilles@FreeBSD.org> | 2011-05-21 22:03:06 +0000 |
---|---|---|
committer | jilles <jilles@FreeBSD.org> | 2011-05-21 22:03:06 +0000 |
commit | 3dd8ae4222dacd974bc67c89db57fbe97d36ed79 (patch) | |
tree | 454723ef27b9a87e895c6adb1d91ac119ce9e994 /bin/sh/parser.h | |
parent | 0ebed84dd0d6e9f4219f1e24043618517c004c3e (diff) | |
download | FreeBSD-src-3dd8ae4222dacd974bc67c89db57fbe97d36ed79.zip FreeBSD-src-3dd8ae4222dacd974bc67c89db57fbe97d36ed79.tar.gz |
sh: Expand aliases after assignments and redirections.
Diffstat (limited to 'bin/sh/parser.h')
-rw-r--r-- | bin/sh/parser.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/sh/parser.h b/bin/sh/parser.h index dfbda86..e213e21 100644 --- a/bin/sh/parser.h +++ b/bin/sh/parser.h @@ -80,4 +80,5 @@ extern const char *const parsekwd[]; union node *parsecmd(int); void fixredir(union node *, const char *, int); int goodname(const char *); +int isassignment(const char *); char *getprompt(void *); |