diff options
author | billf <billf@FreeBSD.org> | 1999-11-30 03:50:02 +0000 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 1999-11-30 03:50:02 +0000 |
commit | 002f48507805c24a9a5019679ed0b1f2e3e258de (patch) | |
tree | 60a6a2ac5db6d7bb41d3d4f0b429d8f620a37c15 /games/cribbage | |
parent | beffd26bc80a987a3bdba59f0b211e2cfbb132ad (diff) | |
download | FreeBSD-src-002f48507805c24a9a5019679ed0b1f2e3e258de.zip FreeBSD-src-002f48507805c24a9a5019679ed0b1f2e3e258de.tar.gz |
copyright/sccsid/rcsid cleanup.
Diffstat (limited to 'games/cribbage')
-rw-r--r-- | games/cribbage/cards.c | 6 | ||||
-rw-r--r-- | games/cribbage/crib.c | 8 | ||||
-rw-r--r-- | games/cribbage/extern.c | 4 | ||||
-rw-r--r-- | games/cribbage/instr.c | 4 | ||||
-rw-r--r-- | games/cribbage/io.c | 6 | ||||
-rw-r--r-- | games/cribbage/score.c | 6 | ||||
-rw-r--r-- | games/cribbage/support.c | 6 |
7 files changed, 29 insertions, 11 deletions
diff --git a/games/cribbage/cards.c b/games/cribbage/cards.c index 9b678d4..ba846ae 100644 --- a/games/cribbage/cards.c +++ b/games/cribbage/cards.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[] = "@(#)cards.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <curses.h> diff --git a/games/cribbage/crib.c b/games/cribbage/crib.c index 6206510..9fccc63 100644 --- a/games/cribbage/crib.c +++ b/games/cribbage/crib.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) 1980, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */ #ifndef lint +#if 0 static char sccsid[] = "@(#)crib.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <curses.h> diff --git a/games/cribbage/extern.c b/games/cribbage/extern.c index 9083cc8..97516df 100644 --- a/games/cribbage/extern.c +++ b/games/cribbage/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 <curses.h> diff --git a/games/cribbage/instr.c b/games/cribbage/instr.c index a0414d8..2e310b9 100644 --- a/games/cribbage/instr.c +++ b/games/cribbage/instr.c @@ -32,7 +32,11 @@ */ #ifndef lint +#if 0 static char sccsid[] = "@(#)instr.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <sys/types.h> diff --git a/games/cribbage/io.c b/games/cribbage/io.c index 96b92db..9384354 100644 --- a/games/cribbage/io.c +++ b/games/cribbage/io.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[] = "@(#)io.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <ctype.h> diff --git a/games/cribbage/score.c b/games/cribbage/score.c index d81ebce..a2a7d0b 100644 --- a/games/cribbage/score.c +++ b/games/cribbage/score.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[] = "@(#)score.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <curses.h> diff --git a/games/cribbage/support.c b/games/cribbage/support.c index 60d9f5b..639151b 100644 --- a/games/cribbage/support.c +++ b/games/cribbage/support.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[] = "@(#)support.c 8.1 (Berkeley) 5/31/93"; +#endif +static const char rcsid[] = + "$FreeBSD$"; #endif /* not lint */ #include <curses.h> |