diff options
author | schweikh <schweikh@FreeBSD.org> | 2003-08-30 12:31:44 +0000 |
---|---|---|
committer | schweikh <schweikh@FreeBSD.org> | 2003-08-30 12:31:44 +0000 |
commit | 70a2b506d0394f7e4718d8cf08ad3ccfa2112637 (patch) | |
tree | 6e23a9b62c546da89fbc5cc397c8c2045f56efc3 /bin/sh/arith.h | |
parent | e8c434f7c55809a53a64211ba5234f1f59e72df8 (diff) | |
download | FreeBSD-src-70a2b506d0394f7e4718d8cf08ad3ccfa2112637.zip FreeBSD-src-70a2b506d0394f7e4718d8cf08ad3ccfa2112637.tar.gz |
Implement missing shell arithmetic operators in $(()) expansion
and variable recognition.
PR: standards/52972
Submitted by: Wartan Hachaturow <wart@tepkom.ru>
Reviewed by: tjr (improved on original patch)
Tested by: buildworld on CURRENT.
MFC after: 6 weeks
Diffstat (limited to 'bin/sh/arith.h')
-rw-r--r-- | bin/sh/arith.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/sh/arith.h b/bin/sh/arith.h index ba8134e..45161c1 100644 --- a/bin/sh/arith.h +++ b/bin/sh/arith.h @@ -34,5 +34,6 @@ * $FreeBSD$ */ +int arith_assign(char *, arith_t); int arith(char *); int expcmd(int , char **); |