diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1996-11-02 05:18:30 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1996-11-02 05:18:30 +0000 |
commit | 2ee7aeb3e5333bb951c4efb03da56de55d3c264c (patch) | |
tree | 7e3e10d82869286ceb529c29d764143e1ad828d2 /bin/sh/bltin | |
parent | cda2511e503c1edeb0ee87944f0a5951f8027e89 (diff) |
Fix eval of $1, a typo, and a thinko.
Diffstat (limited to 'bin/sh/bltin')
-rw-r--r-- | bin/sh/bltin/echo.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/sh/bltin/echo.c b/bin/sh/bltin/echo.c index 31f3cc51ebe..993ececcb3e 100644 --- a/bin/sh/bltin/echo.c +++ b/bin/sh/bltin/echo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: echo.c,v 1.2 1996/06/23 14:21:41 deraadt Exp $ */ +/* $OpenBSD: echo.c,v 1.3 1996/11/02 05:18:29 millert Exp $ */ /* $NetBSD: echo.c,v 1.7 1995/03/21 09:10:49 cgd Exp $ */ /*- @@ -49,6 +49,7 @@ /* #define eflag 1 */ +int main(argc, argv) char **argv; { register char **ap; register char *p; |