diff options
author | stefanf <stefanf@FreeBSD.org> | 2005-08-13 15:04:30 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2005-08-13 15:04:30 +0000 |
commit | e4a640448d3528aef497b7d29e3caaff29c8b2e2 (patch) | |
tree | 0447625bd0f8d67e1348c5e961b6c1736c9b5179 /bin | |
parent | 9ea5fb8954e39463efb33bc0f7e6b3482ba8fc85 (diff) | |
download | FreeBSD-src-e4a640448d3528aef497b7d29e3caaff29c8b2e2.zip FreeBSD-src-e4a640448d3528aef497b7d29e3caaff29c8b2e2.tar.gz |
Declare echocmd() and testcmd().
Diffstat (limited to 'bin')
-rw-r--r-- | bin/sh/bltin/bltin.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/sh/bltin/bltin.h b/bin/sh/bltin/bltin.h index 66c6164..c4bf8b6 100644 --- a/bin/sh/bltin/bltin.h +++ b/bin/sh/bltin/bltin.h @@ -82,5 +82,7 @@ pointer stalloc(int); void error(const char *, ...) __printf0like(1, 2); +int echocmd(int, char **); +int testcmd(int, char **); extern char *commandname; |