summaryrefslogtreecommitdiffstats
path: root/games/backgammon/common_source
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/backgammon/common_source
parentbeffd26bc80a987a3bdba59f0b211e2cfbb132ad (diff)
downloadFreeBSD-src-002f48507805c24a9a5019679ed0b1f2e3e258de.zip
FreeBSD-src-002f48507805c24a9a5019679ed0b1f2e3e258de.tar.gz
copyright/sccsid/rcsid cleanup.
Diffstat (limited to 'games/backgammon/common_source')
-rw-r--r--games/backgammon/common_source/allow.c6
-rw-r--r--games/backgammon/common_source/board.c6
-rw-r--r--games/backgammon/common_source/check.c6
-rw-r--r--games/backgammon/common_source/fancy.c6
-rw-r--r--games/backgammon/common_source/init.c4
-rw-r--r--games/backgammon/common_source/odds.c6
-rw-r--r--games/backgammon/common_source/one.c6
-rw-r--r--games/backgammon/common_source/save.c6
-rw-r--r--games/backgammon/common_source/subs.c6
-rw-r--r--games/backgammon/common_source/table.c6
10 files changed, 40 insertions, 18 deletions
diff --git a/games/backgammon/common_source/allow.c b/games/backgammon/common_source/allow.c
index d2848b1d..7c9f593 100644
--- a/games/backgammon/common_source/allow.c
+++ b/games/backgammon/common_source/allow.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[] = "@(#)allow.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include "back.h"
diff --git a/games/backgammon/common_source/board.c b/games/backgammon/common_source/board.c
index b7c365c..792b042 100644
--- a/games/backgammon/common_source/board.c
+++ b/games/backgammon/common_source/board.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[] = "@(#)board.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <string.h>
diff --git a/games/backgammon/common_source/check.c b/games/backgammon/common_source/check.c
index 78433b7..70b9c62 100644
--- a/games/backgammon/common_source/check.c
+++ b/games/backgammon/common_source/check.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[] = "@(#)check.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include "back.h"
diff --git a/games/backgammon/common_source/fancy.c b/games/backgammon/common_source/fancy.c
index 6ddb464..7663a75 100644
--- a/games/backgammon/common_source/fancy.c
+++ b/games/backgammon/common_source/fancy.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[] = "@(#)fancy.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <stdlib.h>
diff --git a/games/backgammon/common_source/init.c b/games/backgammon/common_source/init.c
index d0cf548..24ee2a0 100644
--- a/games/backgammon/common_source/init.c
+++ b/games/backgammon/common_source/init.c
@@ -32,7 +32,11 @@
*/
#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 <sys/cdefs.h>
diff --git a/games/backgammon/common_source/odds.c b/games/backgammon/common_source/odds.c
index d3e21e4..f840376 100644
--- a/games/backgammon/common_source/odds.c
+++ b/games/backgammon/common_source/odds.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[] = "@(#)odds.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include "back.h"
diff --git a/games/backgammon/common_source/one.c b/games/backgammon/common_source/one.c
index e62a59f..e94c183 100644
--- a/games/backgammon/common_source/one.c
+++ b/games/backgammon/common_source/one.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[] = "@(#)one.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include "back.h"
diff --git a/games/backgammon/common_source/save.c b/games/backgammon/common_source/save.c
index 674c192..fe3475d 100644
--- a/games/backgammon/common_source/save.c
+++ b/games/backgammon/common_source/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 <fcntl.h>
diff --git a/games/backgammon/common_source/subs.c b/games/backgammon/common_source/subs.c
index d60bf4a..15af008 100644
--- a/games/backgammon/common_source/subs.c
+++ b/games/backgammon/common_source/subs.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[] = "@(#)subs.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include <stdio.h>
diff --git a/games/backgammon/common_source/table.c b/games/backgammon/common_source/table.c
index b64f09b..572cba3 100644
--- a/games/backgammon/common_source/table.c
+++ b/games/backgammon/common_source/table.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[] = "@(#)table.c 8.1 (Berkeley) 5/31/93";
+#endif
+static const char rcsid[] =
+ "$FreeBSD$";
#endif /* not lint */
#include "back.h"
OpenPOWER on IntegriCloud