Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.sbin/installboot Remove if defined(__RCSID) around __RCS...



details:   https://anonhg.NetBSD.org/src/rev/993e204be938
branches:  trunk
changeset: 750792:993e204be938
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Thu Jan 14 16:27:49 2010 +0000

description:
Remove if defined(__RCSID) around __RCSID() macro.
#include "nbtool_config.h" is enough for tools.

diffstat:

 usr.sbin/installboot/arch/amiga.c   |  6 +++---
 usr.sbin/installboot/arch/sparc64.c |  6 +++---
 usr.sbin/installboot/ext2fs.c       |  6 +++---
 usr.sbin/installboot/ffs.c          |  6 +++---
 usr.sbin/installboot/fstypes.c      |  6 +++---
 usr.sbin/installboot/installboot.c  |  6 +++---
 usr.sbin/installboot/machines.c     |  6 +++---
 usr.sbin/installboot/sum.c          |  6 +++---
 8 files changed, 24 insertions(+), 24 deletions(-)

diffs (160 lines):

diff -r 9978905b1b4a -r 993e204be938 usr.sbin/installboot/arch/amiga.c
--- a/usr.sbin/installboot/arch/amiga.c Thu Jan 14 14:44:13 2010 +0000
+++ b/usr.sbin/installboot/arch/amiga.c Thu Jan 14 16:27:49 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: amiga.c,v 1.6 2008/04/28 20:24:16 martin Exp $ */
+/*     $NetBSD: amiga.c,v 1.7 2010/01/14 16:27:49 tsutsui Exp $        */
 
 /*-
  * Copyright (c) 1999, 2002 The NetBSD Foundation, Inc.
@@ -37,8 +37,8 @@
 #endif
 
 #include <sys/cdefs.h>
-#if defined(__RCSID) && !defined(__lint)
-__RCSID("$NetBSD: amiga.c,v 1.6 2008/04/28 20:24:16 martin Exp $");
+#if !defined(__lint)
+__RCSID("$NetBSD: amiga.c,v 1.7 2010/01/14 16:27:49 tsutsui Exp $");
 #endif /* !__lint */
 
 #include <sys/param.h>
diff -r 9978905b1b4a -r 993e204be938 usr.sbin/installboot/arch/sparc64.c
--- a/usr.sbin/installboot/arch/sparc64.c       Thu Jan 14 14:44:13 2010 +0000
+++ b/usr.sbin/installboot/arch/sparc64.c       Thu Jan 14 16:27:49 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sparc64.c,v 1.17 2008/05/29 14:51:27 mrg Exp $ */
+/*     $NetBSD: sparc64.c,v 1.18 2010/01/14 16:27:49 tsutsui Exp $     */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -60,8 +60,8 @@
 #endif
 
 #include <sys/cdefs.h>
-#if defined(__RCSID) && !defined(__lint)
-__RCSID("$NetBSD: sparc64.c,v 1.17 2008/05/29 14:51:27 mrg Exp $");
+#if !defined(__lint)
+__RCSID("$NetBSD: sparc64.c,v 1.18 2010/01/14 16:27:49 tsutsui Exp $");
 #endif /* !__lint */
 
 #include <sys/param.h>
diff -r 9978905b1b4a -r 993e204be938 usr.sbin/installboot/ext2fs.c
--- a/usr.sbin/installboot/ext2fs.c     Thu Jan 14 14:44:13 2010 +0000
+++ b/usr.sbin/installboot/ext2fs.c     Thu Jan 14 16:27:49 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ext2fs.c,v 1.5 2010/01/07 13:26:00 tsutsui Exp $       */
+/*     $NetBSD: ext2fs.c,v 1.6 2010/01/14 16:27:49 tsutsui Exp $       */
 
 /*
  * Copyright (c) 1997 Manuel Bouyer.
@@ -58,8 +58,8 @@
 #endif
 
 #include <sys/cdefs.h>
-#if defined(__RCSID) && !defined(__lint)
-__RCSID("$NetBSD: ext2fs.c,v 1.5 2010/01/07 13:26:00 tsutsui Exp $");
+#if !defined(__lint)
+__RCSID("$NetBSD: ext2fs.c,v 1.6 2010/01/14 16:27:49 tsutsui Exp $");
 #endif /* !__lint */
 
 #include <sys/param.h>
diff -r 9978905b1b4a -r 993e204be938 usr.sbin/installboot/ffs.c
--- a/usr.sbin/installboot/ffs.c        Thu Jan 14 14:44:13 2010 +0000
+++ b/usr.sbin/installboot/ffs.c        Thu Jan 14 16:27:49 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ffs.c,v 1.28 2010/01/07 13:26:00 tsutsui Exp $ */
+/*     $NetBSD: ffs.c,v 1.29 2010/01/14 16:27:49 tsutsui Exp $ */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -34,8 +34,8 @@
 #endif
 
 #include <sys/cdefs.h>
-#if defined(__RCSID) && !defined(__lint)
-__RCSID("$NetBSD: ffs.c,v 1.28 2010/01/07 13:26:00 tsutsui Exp $");
+#if !defined(__lint)
+__RCSID("$NetBSD: ffs.c,v 1.29 2010/01/14 16:27:49 tsutsui Exp $");
 #endif /* !__lint */
 
 #include <sys/param.h>
diff -r 9978905b1b4a -r 993e204be938 usr.sbin/installboot/fstypes.c
--- a/usr.sbin/installboot/fstypes.c    Thu Jan 14 14:44:13 2010 +0000
+++ b/usr.sbin/installboot/fstypes.c    Thu Jan 14 16:27:49 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: fstypes.c,v 1.12 2010/01/07 13:26:00 tsutsui Exp $     */
+/*     $NetBSD: fstypes.c,v 1.13 2010/01/14 16:27:49 tsutsui Exp $     */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -34,8 +34,8 @@
 #endif
 
 #include <sys/cdefs.h>
-#if defined(__RCSID) && !defined(__lint)
-__RCSID("$NetBSD: fstypes.c,v 1.12 2010/01/07 13:26:00 tsutsui Exp $");
+#if !defined(__lint)
+__RCSID("$NetBSD: fstypes.c,v 1.13 2010/01/14 16:27:49 tsutsui Exp $");
 #endif /* !__lint */
 
 #include <sys/types.h>
diff -r 9978905b1b4a -r 993e204be938 usr.sbin/installboot/installboot.c
--- a/usr.sbin/installboot/installboot.c        Thu Jan 14 14:44:13 2010 +0000
+++ b/usr.sbin/installboot/installboot.c        Thu Jan 14 16:27:49 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: installboot.c,v 1.32 2010/01/07 13:26:00 tsutsui Exp $ */
+/*     $NetBSD: installboot.c,v 1.33 2010/01/14 16:27:49 tsutsui Exp $ */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -34,8 +34,8 @@
 #endif
 
 #include <sys/cdefs.h>
-#if defined(__RCSID) && !defined(__lint)
-__RCSID("$NetBSD: installboot.c,v 1.32 2010/01/07 13:26:00 tsutsui Exp $");
+#if !defined(__lint)
+__RCSID("$NetBSD: installboot.c,v 1.33 2010/01/14 16:27:49 tsutsui Exp $");
 #endif /* !__lint */
 
 #include <sys/ioctl.h>
diff -r 9978905b1b4a -r 993e204be938 usr.sbin/installboot/machines.c
--- a/usr.sbin/installboot/machines.c   Thu Jan 14 14:44:13 2010 +0000
+++ b/usr.sbin/installboot/machines.c   Thu Jan 14 16:27:49 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: machines.c,v 1.35 2008/04/28 20:24:16 martin Exp $     */
+/*     $NetBSD: machines.c,v 1.36 2010/01/14 16:27:49 tsutsui Exp $    */
 
 /*-
  * Copyright (c) 2002-2005 The NetBSD Foundation, Inc.
@@ -34,8 +34,8 @@
 #endif
 
 #include <sys/cdefs.h>
-#if defined(__RCSID) && !defined(__lint)
-__RCSID("$NetBSD: machines.c,v 1.35 2008/04/28 20:24:16 martin Exp $");
+#if !defined(__lint)
+__RCSID("$NetBSD: machines.c,v 1.36 2010/01/14 16:27:49 tsutsui Exp $");
 #endif /* !__lint */
 
 #include <sys/types.h>
diff -r 9978905b1b4a -r 993e204be938 usr.sbin/installboot/sum.c
--- a/usr.sbin/installboot/sum.c        Thu Jan 14 14:44:13 2010 +0000
+++ b/usr.sbin/installboot/sum.c        Thu Jan 14 16:27:49 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sum.c,v 1.4 2008/04/28 20:24:16 martin Exp $   */
+/*     $NetBSD: sum.c,v 1.5 2010/01/14 16:27:49 tsutsui Exp $  */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -64,8 +64,8 @@
 #endif
 
 #include <sys/cdefs.h>
-#if defined(__RCSID) && !defined(__lint)
-__RCSID("$NetBSD: sum.c,v 1.4 2008/04/28 20:24:16 martin Exp $");
+#if !defined(__lint)
+__RCSID("$NetBSD: sum.c,v 1.5 2010/01/14 16:27:49 tsutsui Exp $");
 #endif /* !__lint */
 
 #include <sys/types.h>



Home | Main Index | Thread Index | Old Index