]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
This patch marks unused parameters in atc(6) as such.
authorhubertf <hubertf@NetBSD.org>
Sun, 25 Jul 1999 00:24:38 +0000 (00:24 +0000)
committerhubertf <hubertf@NetBSD.org>
Sun, 25 Jul 1999 00:24:38 +0000 (00:24 +0000)
Patch submitted in PR 8058 by Joseph Myers <jsm28@cam.ac.uk>

atc/grammar.y
atc/graphics.c
atc/input.c
atc/log.c
atc/update.c

index 4687582daa3f2f028716374f797f4cd063aa89db..4f32ddf29bda200f53deae59ce78599388bf580e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: grammar.y,v 1.5 1999/07/21 13:10:47 hubertf Exp $      */
+/*     $NetBSD: grammar.y,v 1.6 1999/07/25 00:24:38 hubertf Exp $      */
 
 /*-
  * Copyright (c) 1990, 1993
@@ -68,7 +68,7 @@
 #if 0
 static char sccsid[] = "@(#)grammar.y  8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: grammar.y,v 1.5 1999/07/21 13:10:47 hubertf Exp $");
+__RCSID("$NetBSD: grammar.y,v 1.6 1999/07/25 00:24:38 hubertf Exp $");
 #endif
 #endif /* not lint */
 
@@ -379,7 +379,7 @@ check_edir(x, y, dir)
 
 void
 check_adir(x, y, dir)
-       int x, y, dir;
+       int x __attribute__((__unused__)), y __attribute__((__unused__)), dir __attribute__((__unused__));
 {
 }
 
index e7f6439835bd437ac78ec98332a7ce1195ebe23b..693e0ae9021d3c66c5c9e78ac0ab9f37abcc3540 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: graphics.c,v 1.6 1999/07/24 23:58:15 hubertf Exp $     */
+/*     $NetBSD: graphics.c,v 1.7 1999/07/25 00:24:38 hubertf Exp $     */
 
 /*-
  * Copyright (c) 1990, 1993
@@ -50,7 +50,7 @@
 #if 0
 static char sccsid[] = "@(#)graphics.c 8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: graphics.c,v 1.6 1999/07/24 23:58:15 hubertf Exp $");
+__RCSID("$NetBSD: graphics.c,v 1.7 1999/07/25 00:24:38 hubertf Exp $");
 #endif
 #endif /* not lint */
 
@@ -297,7 +297,7 @@ ioerror(pos, len, str)
 
 void
 quit(dummy)
-       int dummy;
+       int dummy __attribute__((__unused__));
 {
        int                     c, y, x;
 #ifdef BSD
index 821d6055034103cb050cf64f798bdddd66ecddf2..a5c75decc73a57f2ade997f713a80921a5331b52 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: input.c,v 1.12 1999/07/17 19:57:03 hubertf Exp $       */
+/*     $NetBSD: input.c,v 1.13 1999/07/25 00:24:38 hubertf Exp $       */
 
 /*-
  * Copyright (c) 1990, 1993
@@ -50,7 +50,7 @@
 #if 0
 static char sccsid[] = "@(#)input.c    8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: input.c,v 1.12 1999/07/17 19:57:03 hubertf Exp $");
+__RCSID("$NetBSD: input.c,v 1.13 1999/07/25 00:24:38 hubertf Exp $");
 #endif
 #endif not lint
 
@@ -374,7 +374,7 @@ setplane(c)
 
 const char     *
 turn(c)
-       char c;
+       char c __attribute__((__unused__));
 {
        if (p.altitude == 0)
                return ("Planes at airports may not change direction");
@@ -383,7 +383,7 @@ turn(c)
 
 const char     *
 circle(c)
-       char c;
+       char c __attribute__((__unused__));
 {
        if (p.altitude == 0)
                return ("Planes cannot circle on the ground");
@@ -393,7 +393,7 @@ circle(c)
 
 const char     *
 left(c)
-       char c;
+       char c __attribute__((__unused__));
 {
        dir = D_LEFT;
        p.new_dir = p.dir - 1;
@@ -404,7 +404,7 @@ left(c)
 
 const char     *
 right(c)
-       char c;
+       char c __attribute__((__unused__));
 {
        dir = D_RIGHT;
        p.new_dir = p.dir + 1;
@@ -415,7 +415,7 @@ right(c)
 
 const char     *
 Left(c)
-       char c;
+       char c __attribute__((__unused__));
 {
        p.new_dir = p.dir - 2;
        if (p.new_dir < 0)
@@ -425,7 +425,7 @@ Left(c)
 
 const char     *
 Right(c)
-       char c;
+       char c __attribute__((__unused__));
 {
        p.new_dir = p.dir + 2;
        if (p.new_dir >= MAXDIR)
@@ -481,7 +481,7 @@ delayb(c)
 
 const char     *
 beacon(c)
-       char c;
+       char c __attribute__((__unused__));
 {
        dest_type = T_BEACON;
        return (NULL);
@@ -489,7 +489,7 @@ beacon(c)
 
 const char     *
 ex_it(c)
-       char c;
+       char c __attribute__((__unused__));
 {
        dest_type = T_EXIT;
        return (NULL);
@@ -497,7 +497,7 @@ ex_it(c)
 
 const char     *
 airport(c)
-       char c;
+       char c __attribute__((__unused__));
 {
        dest_type = T_AIRPORT;
        return (NULL);
@@ -505,7 +505,7 @@ airport(c)
 
 const char     *
 climb(c)
-       char c;
+       char c __attribute__((__unused__));
 {
        dir = D_UP;
        return (NULL);
@@ -513,7 +513,7 @@ climb(c)
 
 const char     *
 descend(c)
-       char c;
+       char c __attribute__((__unused__));
 {
        dir = D_DOWN;
        return (NULL);
@@ -621,7 +621,7 @@ rel_dir(c)
 
 const char     *
 mark(c)
-       char c;
+       char c __attribute__((__unused__));
 {
        if (p.altitude == 0)
                return ("Cannot mark planes on the ground");
@@ -633,7 +633,7 @@ mark(c)
 
 const char     *
 unmark(c)
-       char c;
+       char c __attribute__((__unused__));
 {
        if (p.altitude == 0)
                return ("Cannot unmark planes on the ground");
@@ -645,7 +645,7 @@ unmark(c)
 
 const char     *
 ignore(c)
-       char c;
+       char c __attribute__((__unused__));
 {
        if (p.altitude == 0)
                return ("Cannot ignore planes on the ground");
index 746912b48b9a2bcef57d9b3132c9a9fd1446b233..8979b962e455b551fce2d84e9b8577ce93c84772 100644 (file)
--- a/atc/log.c
+++ b/atc/log.c
@@ -1,4 +1,4 @@
-/*     $NetBSD: log.c,v 1.9 1999/07/17 19:57:03 hubertf Exp $  */
+/*     $NetBSD: log.c,v 1.10 1999/07/25 00:24:39 hubertf Exp $ */
 
 /*-
  * Copyright (c) 1990, 1993
@@ -50,7 +50,7 @@
 #if 0
 static char sccsid[] = "@(#)log.c      8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: log.c,v 1.9 1999/07/17 19:57:03 hubertf Exp $");
+__RCSID("$NetBSD: log.c,v 1.10 1999/07/25 00:24:39 hubertf Exp $");
 #endif
 #endif not lint
 
@@ -292,7 +292,7 @@ log_score(list_em)
 
 void
 log_score_quit(dummy)
-       int dummy;
+       int dummy __attribute__((__unused__));
 {
        (void)log_score(0);
        exit(0);
index a1b8aa7751817e0d8cbde57cf5c8af0d4951d600..7cec3927c19a336046c844a5cce31b6957fc0c56 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: update.c,v 1.9 1999/07/24 23:58:15 hubertf Exp $       */
+/*     $NetBSD: update.c,v 1.10 1999/07/25 00:24:39 hubertf Exp $      */
 
 /*-
  * Copyright (c) 1990, 1993
@@ -50,7 +50,7 @@
 #if 0
 static char sccsid[] = "@(#)update.c   8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: update.c,v 1.9 1999/07/24 23:58:15 hubertf Exp $");
+__RCSID("$NetBSD: update.c,v 1.10 1999/07/25 00:24:39 hubertf Exp $");
 #endif
 #endif not lint
 
@@ -58,7 +58,7 @@ __RCSID("$NetBSD: update.c,v 1.9 1999/07/24 23:58:15 hubertf Exp $");
 
 void
 update(dummy)
-       int dummy;
+       int dummy __attribute__((__unused__));
 {
        int     i, dir_diff, unclean;
        PLANE   *pp, *p1, *p2;