summaryrefslogtreecommitdiffstats
path: root/games/mille
diff options
context:
space:
mode:
authorbillf <billf@FreeBSD.org>1999-11-30 03:50:02 +0000
committerbillf <billf@FreeBSD.org>1999-11-30 03:50:02 +0000
commit002f48507805c24a9a5019679ed0b1f2e3e258de (patch)
tree60a6a2ac5db6d7bb41d3d4f0b429d8f620a37c15 /games/mille
parentbeffd26bc80a987a3bdba59f0b211e2cfbb132ad (diff)
downloadFreeBSD-src-002f48507805c24a9a5019679ed0b1f2e3e258de.zip
FreeBSD-src-002f48507805c24a9a5019679ed0b1f2e3e258de.tar.gz
copyright/sccsid/rcsid cleanup.
Diffstat (limited to 'games/mille')
-rw-r--r--games/mille/comp.c6
-rw-r--r--games/mille/end.c6
-rw-r--r--games/mille/extern.c4
-rw-r--r--games/mille/init.c6
-rw-r--r--games/mille/mille.c3
-rw-r--r--games/mille/misc.c6
-rw-r--r--games/mille/move.c6
-rw-r--r--games/mille/print.c6
-rw-r--r--games/mille/roll.c6
-rw-r--r--games/mille/save.c6
-rw-r--r--games/mille/table.c8
-rw-r--r--games/mille/types.c6
-rw-r--r--games/mille/varpush.c6
13 files changed, 51 insertions, 24 deletions
diff --git a/games/mille/comp.c b/games/mille/comp.c
index 798dce8..6c50457 100644
--- a/games/mille/comp.c
+++ b/games/mille/comp.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)comp.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "mille.h"
diff --git a/games/mille/end.c b/games/mille/end.c
index 4fb5f9f..9c80521 100644
--- a/games/mille/end.c
+++ b/games/mille/end.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)end.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "mille.h"
diff --git a/games/mille/extern.c b/games/mille/extern.c
index 1f82bc6..aae29d2de 100644
--- a/games/mille/extern.c
+++ b/games/mille/extern.c
@@ -32,7 +32,11 @@
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)extern.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "mille.h"
diff --git a/games/mille/init.c b/games/mille/init.c
index d5e64f7..3a89a69 100644
--- a/games/mille/init.c
+++ b/games/mille/init.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "mille.h"
diff --git a/games/mille/mille.c b/games/mille/mille.c
index ca6e12c..eb6f6ff 100644
--- a/games/mille/mille.c
+++ b/games/mille/mille.c
@@ -42,9 +42,10 @@ static const char copyright[] =
#ifndef lint
#if 0
static char sccsid[] = "@(#)mille.c 8.1 (Berkeley) 5/31/93";
-#endif
+#else
static const char rcsid[] =
"$FreeBSD$";
+#endif
#endif /* not lint */
# include "mille.h"
diff --git a/games/mille/misc.c b/games/mille/misc.c
index 86e6b10..ebedd22 100644
--- a/games/mille/misc.c
+++ b/games/mille/misc.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)misc.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <sys/file.h>
diff --git a/games/mille/move.c b/games/mille/move.c
index b3741ee..117e7a6 100644
--- a/games/mille/move.c
+++ b/games/mille/move.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)move.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <termios.h>
diff --git a/games/mille/print.c b/games/mille/print.c
index 9a227bc..8cc271a 100644
--- a/games/mille/print.c
+++ b/games/mille/print.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)print.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "mille.h"
diff --git a/games/mille/roll.c b/games/mille/roll.c
index 017ac3f..6a99fb9 100644
--- a/games/mille/roll.c
+++ b/games/mille/roll.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)roll.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "mille.h"
diff --git a/games/mille/save.c b/games/mille/save.c
index 728bc1c..3bd1887 100644
--- a/games/mille/save.c
+++ b/games/mille/save.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)save.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <sys/types.h>
diff --git a/games/mille/table.c b/games/mille/table.c
index b488f31..75240b9 100644
--- a/games/mille/table.c
+++ b/games/mille/table.c
@@ -29,18 +29,20 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
-static char copyright[] =
+static const char copyright[] =
"@(#) Copyright (c) 1982, 1993\n\
The Regents of the University of California. All rights reserved.\n";
#endif /* not lint */
#ifndef lint
+#if 0
static char sccsid[] = "@(#)table.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# define DEBUG
diff --git a/games/mille/types.c b/games/mille/types.c
index 52f4baf..ec51694 100644
--- a/games/mille/types.c
+++ b/games/mille/types.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)types.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include "mille.h"
diff --git a/games/mille/varpush.c b/games/mille/varpush.c
index 8257c7a..70bf17a 100644
--- a/games/mille/varpush.c
+++ b/games/mille/varpush.c
@@ -29,12 +29,14 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $FreeBSD$
*/
#ifndef lint
+#if 0
static char sccsid[] = "@(#)varpush.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
# include <paths.h>
OpenPOWER on IntegriCloud