diff options
author | steve <steve@FreeBSD.org> | 1997-05-19 00:18:52 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1997-05-19 00:18:52 +0000 |
commit | 2f84314766994e7c599dfb2cb98cee628896f8c1 (patch) | |
tree | ce707f65f9e2c0f19159478f30a699c4f56ba6d4 /bin/sh/alias.c | |
parent | ffb9c56f7662bb2fd416f5fa514795e0317af449 (diff) | |
download | FreeBSD-src-2f84314766994e7c599dfb2cb98cee628896f8c1.zip FreeBSD-src-2f84314766994e7c599dfb2cb98cee628896f8c1.tar.gz |
Use the __unused attribute where warranted.
Diffstat (limited to 'bin/sh/alias.c')
-rw-r--r-- | bin/sh/alias.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/sh/alias.c b/bin/sh/alias.c index 12a0ec9..3e7dc4d 100644 --- a/bin/sh/alias.c +++ b/bin/sh/alias.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: alias.c,v 1.7 1997/02/22 13:58:20 peter Exp $ + * $Id: alias.c,v 1.8 1997/04/28 03:06:32 steve Exp $ */ #ifndef lint @@ -232,8 +232,8 @@ aliascmd(argc, argv) int unaliascmd(argc, argv) - int argc; - char **argv; + int argc __unused; + char **argv __unused; { int i; |