Mark unused parameters, nonreturning functions and format functions in

the few cases not already marked.
This commit is contained in:
jsm 2004-02-08 22:23:50 +00:00
parent 5ed2a261e5
commit 10b61a7cca
9 changed files with 35 additions and 33 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: main.c,v 1.19 2004/01/01 15:59:58 jsm Exp $ */
/* $NetBSD: main.c,v 1.20 2004/02/08 22:23:50 jsm Exp $ */
/*
* Copyright (c) 1980, 1993
@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93";
#else
__RCSID("$NetBSD: main.c,v 1.19 2004/01/01 15:59:58 jsm Exp $");
__RCSID("$NetBSD: main.c,v 1.20 2004/02/08 22:23:50 jsm Exp $");
#endif
#endif /* not lint */
@ -89,7 +89,7 @@ static char pbuf[10];
int
main(argc, argv)
int argc;
int argc __attribute__((__unused__));
char **argv;
{
int i; /* non-descript index */

View File

@ -1,4 +1,4 @@
/* $NetBSD: teach.c,v 1.14 2003/08/07 09:36:58 agc Exp $ */
/* $NetBSD: teach.c,v 1.15 2004/02/08 22:23:50 jsm Exp $ */
/*
* Copyright (c) 1980, 1993
@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)teach.c 8.1 (Berkeley) 5/31/93";
#else
__RCSID("$NetBSD: teach.c,v 1.14 2003/08/07 09:36:58 agc Exp $");
__RCSID("$NetBSD: teach.c,v 1.15 2004/02/08 22:23:50 jsm Exp $");
#endif
#endif /* not lint */
@ -61,7 +61,7 @@ const char *const contin[] = {
int
main(argc, argv)
int argc;
int argc __attribute__((__unused__));
char *argv[];
{
int i;

View File

@ -1,4 +1,4 @@
/* $NetBSD: cribbage.h,v 1.11 2004/01/27 20:30:29 jsm Exp $ */
/* $NetBSD: cribbage.h,v 1.12 2004/02/08 22:23:50 jsm Exp $ */
/*
* Copyright (c) 1980, 1993
@ -57,7 +57,8 @@ extern BOOLEAN playing; /* currently playing game */
extern char explan[]; /* string for explanation */
void addmsg(const char *, ...);
void addmsg(const char *, ...)
__attribute__((__format__(__printf__, 1, 2)));
int adjust(const CARD [], CARD);
int anymove(const CARD [], int, int);
int anysumto(const CARD [], int, int, int);
@ -85,7 +86,8 @@ int is_one(CARD, const CARD [], int);
void makeboard(void);
void makedeck(CARD []);
void makeknown(const CARD [], int);
void msg(const char *, ...);
void msg(const char *, ...)
__attribute__((__format__(__printf__, 1, 2)));
int msgcard(CARD, BOOLEAN);
int msgcrd(CARD, BOOLEAN, const char *, BOOLEAN);
int number(int, int, const char *);

View File

@ -1,4 +1,4 @@
/* $NetBSD: dm.c,v 1.19 2004/01/27 20:30:29 jsm Exp $ */
/* $NetBSD: dm.c,v 1.20 2004/02/08 22:23:50 jsm Exp $ */
/*
* Copyright (c) 1987, 1993
@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1987, 1993\n\
#if 0
static char sccsid[] = "@(#)dm.c 8.1 (Berkeley) 5/31/93";
#else
__RCSID("$NetBSD: dm.c,v 1.19 2004/01/27 20:30:29 jsm Exp $");
__RCSID("$NetBSD: dm.c,v 1.20 2004/02/08 22:23:50 jsm Exp $");
#endif
#endif /* not lint */
@ -79,7 +79,7 @@ int users(void);
int
main(argc, argv)
int argc;
int argc __attribute__((__unused__));
char *argv[];
{
char *cp;

View File

@ -1,4 +1,4 @@
/* $NetBSD: unstr.c,v 1.10 2004/01/27 20:30:29 jsm Exp $ */
/* $NetBSD: unstr.c,v 1.11 2004/02/08 22:23:50 jsm Exp $ */
/*-
* Copyright (c) 1991, 1993
@ -42,7 +42,7 @@ __COPYRIGHT("@(#) Copyright (c) 1991, 1993\n\
#if 0
static char sccsid[] = "@(#)unstr.c 8.1 (Berkeley) 5/31/93";
#else
__RCSID("$NetBSD: unstr.c,v 1.10 2004/01/27 20:30:29 jsm Exp $");
__RCSID("$NetBSD: unstr.c,v 1.11 2004/02/08 22:23:50 jsm Exp $");
#endif
#endif /* not lint */
@ -86,7 +86,7 @@ void order_unstr(STRFILE *);
/* ARGSUSED */
int
main(ac, av)
int ac;
int ac __attribute__((__unused__));
char **av;
{
static STRFILE tbl; /* description table */

View File

@ -1,4 +1,4 @@
/* $NetBSD: hunt.c,v 1.21 2004/01/27 20:30:29 jsm Exp $ */
/* $NetBSD: hunt.c,v 1.22 2004/02/08 22:23:50 jsm Exp $ */
/*
* Copyright (c) 1983-2003, Regents of the University of California.
* All rights reserved.
@ -32,7 +32,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: hunt.c,v 1.21 2004/01/27 20:30:29 jsm Exp $");
__RCSID("$NetBSD: hunt.c,v 1.22 2004/02/08 22:23:50 jsm Exp $");
#endif /* not lint */
# include <sys/param.h>
@ -752,7 +752,7 @@ bad_ver()
*/
SIGNAL_TYPE
sigterm(dummy)
int dummy;
int dummy __attribute__((__unused__));
{
leavex(0, (char *) NULL);
/* NOTREACHED */
@ -765,7 +765,7 @@ sigterm(dummy)
*/
SIGNAL_TYPE
sigusr1(dummy)
int dummy;
int dummy __attribute__((__unused__));
{
leavex(1, "Unable to start driver. Try again.");
/* NOTREACHED */
@ -778,7 +778,7 @@ sigusr1(dummy)
*/
SIGNAL_TYPE
sigalrm(dummy)
int dummy;
int dummy __attribute__((__unused__));
{
return;
}
@ -805,7 +805,7 @@ rmnl(s)
*/
SIGNAL_TYPE
intr(dummy)
int dummy;
int dummy __attribute__((__unused__));
{
int ch;
int explained;

View File

@ -1,4 +1,4 @@
/* $NetBSD: otto.c,v 1.6 2004/01/27 20:30:29 jsm Exp $ */
/* $NetBSD: otto.c,v 1.7 2004/02/08 22:23:50 jsm Exp $ */
# ifdef OTTO
/*
* Copyright (c) 1983-2003, Regents of the University of California.
@ -45,7 +45,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: otto.c,v 1.6 2004/01/27 20:30:29 jsm Exp $");
__RCSID("$NetBSD: otto.c,v 1.7 2004/02/08 22:23:50 jsm Exp $");
#endif /* not lint */
# include <sys/time.h>
@ -156,7 +156,7 @@ extern int Otto_count;
STATIC SIGNAL_TYPE
nothing(dummy)
int dummy;
int dummy __attribute__((__unused__));
{
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: faketalk.c,v 1.9 2004/01/27 20:30:29 jsm Exp $ */
/* $NetBSD: faketalk.c,v 1.10 2004/02/08 22:23:50 jsm Exp $ */
/*
* Copyright (c) 1983-2003, Regents of the University of California.
* All rights reserved.
@ -32,7 +32,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: faketalk.c,v 1.9 2004/01/27 20:30:29 jsm Exp $");
__RCSID("$NetBSD: faketalk.c,v 1.10 2004/02/08 22:23:50 jsm Exp $");
#endif /* not lint */
#include "bsd.h"
@ -74,7 +74,7 @@ SIGNAL_TYPE exorcise(int);
SIGNAL_TYPE
exorcise(dummy)
int dummy;
int dummy __attribute__((__unused__));
{
(void) wait(0);
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: hunt.h,v 1.10 2004/01/27 20:30:29 jsm Exp $ */
/* $NetBSD: hunt.h,v 1.11 2004/02/08 22:23:50 jsm Exp $ */
/*
* Copyright (c) 1983-2003, Regents of the University of California.
@ -417,8 +417,8 @@ extern FLAG no_beep;
void add_shot(int, int, int, char, int, PLAYER *, int, char);
int answer(void);
void bad_con(void);
void bad_ver(void);
void bad_con(void) __attribute__((__noreturn__));
void bad_ver(void) __attribute__((__noreturn__));
int broadcast_vec(int, struct sockaddr **);
void ce(PLAYER *);
void cgoto(PLAYER *, int, int);
@ -475,7 +475,7 @@ char translate(char);
SIGNAL_TYPE cleanup(int) __attribute__((__noreturn__));
SIGNAL_TYPE intr(int);
SIGNAL_TYPE sigalrm(int);
SIGNAL_TYPE sigemt(int);
SIGNAL_TYPE sigterm(int);
SIGNAL_TYPE sigusr1(int);
SIGNAL_TYPE sigemt(int) __attribute__((__noreturn__));
SIGNAL_TYPE sigterm(int) __attribute__((__noreturn__));
SIGNAL_TYPE sigusr1(int) __attribute__((__noreturn__));
SIGNAL_TYPE tstp(int);