rscid -> __FBSDID. Mark parameter as __unused when necessary.

This commit is contained in:
Philippe Charnier 2005-05-29 15:57:00 +00:00
parent 8a9d84b4a6
commit 35a974fdb8
4 changed files with 13 additions and 9 deletions

View File

@ -31,10 +31,11 @@
#if 0
static char sccsid[] = "@(#)interactive.c 8.5 (Berkeley) 5/1/95";
#endif
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/stat.h>
@ -753,7 +754,7 @@ fcmp(const void *f1, const void *f2)
* respond to interrupts
*/
void
onintr(int signo)
onintr(int signo __unused)
{
if (command == 'i' && runshell)
longjmp(reset, 1);

View File

@ -37,10 +37,11 @@ static const char copyright[] =
#if 0
static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 5/4/95";
#endif
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/stat.h>

View File

@ -31,10 +31,11 @@
#if 0
static char sccsid[] = "@(#)restore.c 8.3 (Berkeley) 9/13/94";
#endif
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <limits.h>

View File

@ -36,10 +36,11 @@
#if 0
static char sccsid[] = "@(#)tape.c 8.9 (Berkeley) 5/1/95";
#endif
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/param.h>
#include <sys/file.h>
#include <sys/mtio.h>