diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 1998-09-02 06:46:52 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 1998-09-02 06:46:52 +0000 |
commit | 5326b8381955c08bac2de3d52a2c20b54400e5a8 (patch) | |
tree | 25cd75746b8380272db2635320788cbc007e1db9 /games/backgammon/common_source/subs.c | |
parent | 67e005471da6102f6302774a602bbaabff53323e (diff) |
Delete two unused functions; jsm28@cam.ac.uk
Diffstat (limited to 'games/backgammon/common_source/subs.c')
-rw-r--r-- | games/backgammon/common_source/subs.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/games/backgammon/common_source/subs.c b/games/backgammon/common_source/subs.c index bf8d57990b7..13e1ff444d8 100644 --- a/games/backgammon/common_source/subs.c +++ b/games/backgammon/common_source/subs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subs.c,v 1.5 1998/03/19 11:13:26 pjanzen Exp $ */ +/* $OpenBSD: subs.c,v 1.6 1998/09/02 06:46:51 pjanzen Exp $ */ /* * Copyright (c) 1980, 1993 @@ -37,7 +37,7 @@ #if 0 static char sccsid[] = "@(#)subs.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: subs.c,v 1.5 1998/03/19 11:13:26 pjanzen Exp $"; +static char rcsid[] = "$OpenBSD: subs.c,v 1.6 1998/09/02 06:46:51 pjanzen Exp $"; #endif #endif /* not lint */ @@ -72,13 +72,6 @@ errexit(s) getout(0); } -void -strset(s1, s2) - char *s1, *s2; -{ - while ((*s1++ = *s2++) != '\0'); -} - int addbuf(c) int c; |