Home | History | Annotate | only in /src/games/boggle
History log of /src/games/boggle
RevisionDateAuthorComments
 1.22 21-Oct-2003  lukem Rework how MAKEVERBOSE operates:

* Don't bother prefixing commands with a line of ${_MKCMD}\
and instead rely upon "make -s". This is less intrusive on
all the Makefiles than the former. Idea from David Laight.

* Rename the variables use to print messages. The scheme now is:
_MKMSG_FOO Run _MKMSG 'foo'
_MKTARGET_FOO Run _MKMSG_FOO ${.TARGET}
From discussion with Alistair Crooks.
 1.21 19-Oct-2003  lukem rework to use the newer _MKMSGCREATE (et al) macros
 1.20 19-Oct-2003  lukem Support MAKEVERBOSE. (Some host tools still generate verbose runtime messages)
 1.19 18-Sep-2002  lukem use NETBSDSRCDIR as appropriate
 1.18 05-Mar-2002  thorpej There is no need to explcitly use ${.OBJDIR}; it's implied.
 1.17 30-Dec-2000  sommerfeld ${PRINTOBJDIR}ify
 1.16 23-Jan-2000  mycroft More .mk file fallout. *sigh*
 1.15 13-Feb-1999  lukem convert from NOxxx= to MKxxx=no.
include <bsd.own.mk> if testing a MKxxx variable.
 1.14 09-Nov-1998  hubertf make objdir-aware
 1.13 29-Sep-1998  lukem don't install in /usr/share if NOSHARE is defined
 1.12 11-Oct-1997  mycroft Use bsd.subdir.mk as appropriate.
 1.11 07-May-1997  mycroft Add .MAKE to the .OBJDIR hacks, so they work with `make -n'.
 1.10 30-Apr-1997  christos PR/3557: Dave Huang: use web2 not web2a
 1.9 01-Apr-1997  christos Make sure that the dictionary and indexing programs are made.
 1.8 01-Apr-1997  christos - Don't depend on installed ${DESTDIR}/usr/share/dict/words; pick up the
dictionary from the sources.
- Don't depend on the locally built indexing programs to build the dictionaries.
 1.7 24-Mar-1997  christos - Makefile cleanups
 1.6 26-Sep-1996  mrg use words from $DESTDIR.
 1.5 20-Apr-1995  mycroft Remove read-only files before trying to rewrite them. From Greg Hudson.
 1.4 21-Mar-1995  cgd add/fix id tags
 1.3 01-Mar-1995  glass remove extra tab
 1.2 30-Nov-1994  pk Remove hard-coded object directory.
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.2 21-Mar-1995  cgd add/fix id tags
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.10 06-Feb-2010  he When using -lcurses, you also need -lterminfo.
This fixes the build for sun2, and also builds with LDSTATIC=-static,
since archive libraries don't record inter-library dependencies.
 1.9 13-Feb-1999  lukem convert from NOxxx= to MKxxx=no.
include <bsd.own.mk> if testing a MKxxx variable.
 1.8 29-Sep-1998  lukem don't install in /usr/share if NOSHARE is defined
 1.7 18-Feb-1998  jtc Simply include -lcurses instead of -lcurses -ltermcap
 1.6 05-Feb-1998  christos Use -ltermcap instead of -ltermlib
 1.5 24-Mar-1997  christos - Makefile cleanups
 1.4 18-Oct-1996  thorpej Use ${INSTALL}.
 1.3 21-Mar-1995  cgd add/fix id tags
 1.2 22-Dec-1994  cgd specify man pages the new way.
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.29 22-Mar-2014  dholland use size_t instead of int for a length
 1.28 13-Oct-2012  dholland Factor out some common code; pass -Wstrict-overflow.
 1.27 26-Aug-2011  dholland branches: 1.27.2; 1.27.8;
Use __dead and __printflike instead of __attribute__.
 1.26 05-Dec-2010  pgoyette Fix a few of the games to use getprogname() in their usage() functions.

Suggested by Joerg.

XXX There are probably many more that have their progname hard-coded, but
XXX I'm not up for a wholesale roto-till at the moment.
 1.25 05-Dec-2010  pgoyette Since this game is installed as 'boggle', fix the usage() text to match.
 1.24 12-Aug-2009  dholland sprinkle static and prune some dead code
 1.23 13-Jul-2009  roy Rename internal getline() function to get_line() so it does
conflict with the soon to be added getline(3) libc function.
 1.22 20-Jul-2008  lukem Remove the \n and tabs from the __COPYRIGHT() strings.
 1.21 09-Aug-2006  christos branches: 1.21.18;
PR/34175: Zafer Aydogan: touch the window to cause a refresh after help
Also use CTRL instead of \xxx
 1.20 01-Jul-2005  jmc KNF and WARNS=3
 1.19 05-Nov-2004  dsl Add (unsigned char) cast to ctype functions
 1.18 27-Jan-2004  jsm Remove uses of __P.
 1.17 07-Aug-2003  agc Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22269, verified by myself.
 1.16 08-May-2000  mycroft Use setgid(), not setregid().
 1.15 19-Sep-1999  jsm Add alternative style for commands at end of game (#ifdef NEW_STYLE).
 1.14 18-Sep-1999  jsm Fix -Wsign-compare warnings.
 1.13 17-Sep-1999  jsm Fix some uses of NULL as non-pointer and 0 for null pointer.
 1.12 08-Sep-1999  jsm Add use of `const' where appropriate to the games.

This merges in all such remaining changes from the Linux port of the
NetBSD games, except in hunt (where substantial changes from OpenBSD
need to be looked at).

Some such changes were previously covered in PRs bin/6041, bin/6146,
bin/6148, bin/6150, bin/6151, bin/6580, bin/6660, bin/7993, bin/7994,
bin/8039, bin/8057 and bin/8093.
 1.11 21-Jul-1999  hubertf Drop setgid privs early. Via OpenBSD, reported in PR 5970 by
Joseph Myers <jsm28@cam.ac.uk>
 1.10 14-Jul-1999  hubertf From PR 7988 by Joseph Myers <jsm28@cam.ac.uk>: use the symbolic
name SEEK_SET for values which end up as the third argument of
fseek(), rather than a hard-coded 0.
 1.9 30-Aug-1998  veego Add braces to make the new egcs happy.
 1.8 11-Oct-1997  lukem minor KNFify
 1.7 10-Oct-1997  lukem WARNSify
 1.6 07-Jan-1997  tls Sync to 4.4BSD-Lite2
 1.5 24-Apr-1995  cgd Various changes to make games compile w/o warnings on the alpha:
Include appropriate includes, delete bogus function declarations,
change sizes of variables and casts.
 1.4 21-Mar-1995  cgd add/fix id tags
 1.3 29-Dec-1994  phil make the code agree with documentation and usage() for final two
options.
 1.2 29-Dec-1994  phil Don't try to process args if they aren't there.
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.2 28-Dec-1996  tls Import from 4.4BSD-Lite2
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.21.18.1 18-Sep-2008  wrstuden Sync with wrstuden-revivesa-base-2.
 1.27.8.2 20-Aug-2014  tls Rebase to HEAD as of a few days ago.
 1.27.8.1 20-Nov-2012  tls Resync to 2012-11-19 00:00:00 UTC
 1.27.2.2 22-May-2014  yamt sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
 1.27.2.1 30-Oct-2012  yamt sync with head
 1.4 25-Jun-2016  dholland Double the threshold for crashing out with "too many words".
 1.3 07-Aug-2003  agc Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22269, verified by myself.
 1.2 21-Mar-1995  cgd add/fix id tags
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.9 24-Sep-2006  jmcneill PR# 4305: [dM] boggle uses very incomplete wordlist.
 1.8 15-Sep-2005  wiz Use standard AUTHORS section header. From YOMURA Masanori in private mail
Sort sections if necessary. Use more/better markup.
 1.7 07-Aug-2003  agc Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22269, verified by myself.
 1.6 27-Jun-2003  wiz Fix macro order, and quote question mark.
 1.5 26-Sep-2002  wiz Lots of minor fixes resulting from reading these man pages in detail.
 1.4 26-Sep-2002  wiz New sentences begin on new lines.
Patch from Richard Elz, slightly improved by yours truly.
 1.3 02-Apr-2001  wiz mdoc'ify, and clean up in the process.
 1.2 21-Mar-1995  cgd add/fix id tags
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.12 02-May-2021  rillig games: remove trailing whitespace in *.c and *.h
 1.11 12-Aug-2009  dholland sprinkle static and prune some dead code
 1.10 13-Jul-2009  roy Rename internal getline() function to get_line() so it does
conflict with the soon to be added getline(3) libc function.
 1.9 01-Jul-2005  jmc KNF and WARNS=3
 1.8 27-Jan-2004  jsm Remove uses of __P.
 1.7 07-Aug-2003  agc Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22269, verified by myself.
 1.6 09-Sep-1999  jsm Include <time.h> in various places in the games where time() or time_t
are used.
 1.5 08-Sep-1999  jsm Add use of `const' where appropriate to the games.

This merges in all such remaining changes from the Linux port of the
NetBSD games, except in hunt (where substantial changes from OpenBSD
need to be looked at).

Some such changes were previously covered in PRs bin/6041, bin/6146,
bin/6148, bin/6150, bin/6151, bin/6580, bin/6660, bin/7993, bin/7994,
bin/8039, bin/8057 and bin/8093.
 1.4 13-Sep-1998  hubertf mark non-returning functions (PR#6144 by Joseph Myers <jsm28@cam.ac.uk>)
 1.3 24-Apr-1995  cgd Various changes to make games compile w/o warnings on the alpha:
Include appropriate includes, delete bogus function declarations,
change sizes of variables and casts.
 1.2 21-Mar-1995  cgd add/fix id tags
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.7 31-Aug-2011  plunky NULL does not need a cast
 1.6 01-Jul-2005  jmc KNF and WARNS=3
 1.5 07-Aug-2003  agc Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22269, verified by myself.
 1.4 05-Feb-2001  christos fix nested extern
 1.3 10-Oct-1997  lukem WARNSify
 1.2 21-Mar-1995  cgd add/fix id tags
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.22 02-May-2021  rillig games: remove trailing whitespace in *.c and *.h
 1.21 31-Aug-2011  plunky NULL does not need a cast
 1.20 12-Aug-2009  dholland sprinkle static and prune some dead code
 1.19 13-Jul-2009  roy Rename internal getline() function to get_line() so it does
conflict with the soon to be added getline(3) libc function.
 1.18 08-Aug-2008  drochner if initscr() fails, exit with a message rather than crash in the
next curses call
 1.17 15-Dec-2007  perry branches: 1.17.6;
convert __attribute__s to applicable cdefs.h macros
 1.16 09-Aug-2006  christos branches: 1.16.8;
PR/34175: Zafer Aydogan: touch the window to cause a refresh after help
Also use CTRL instead of \xxx
 1.15 01-Jul-2005  jmc KNF and WARNS=3
 1.14 05-Nov-2004  dsl Add (unsigned char) cast to ctype functions
 1.13 27-Jan-2004  jsm Remove uses of __P.
 1.12 07-Aug-2003  agc Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22269, verified by myself.
 1.11 05-Feb-2001  christos fix nested extern
 1.10 08-Sep-1999  jsm Add `__noreturn__' and `__unused__' attributes where appropriate to
the games.

This merges in all such remaining changes from the Linux port of the
NetBSD games, except in hunt (where substantial changes from OpenBSD
need to be looked at).

Most noreturn attributes were previously added in bin/6144, with some
others that were missed then in bin/8082. Previous `unused'
attributes were covered in bin/6557, bin/8058 and other PRs (all these
PRs have already been handled and closed).
 1.9 08-Sep-1999  jsm Add use of `const' where appropriate to the games.

This merges in all such remaining changes from the Linux port of the
NetBSD games, except in hunt (where substantial changes from OpenBSD
need to be looked at).

Some such changes were previously covered in PRs bin/6041, bin/6146,
bin/6148, bin/6150, bin/6151, bin/6580, bin/6660, bin/7993, bin/7994,
bin/8039, bin/8057 and bin/8093.
 1.8 13-Oct-1997  cjs time_t != long; cast it.
 1.7 11-Oct-1997  lukem minor KNFify
 1.6 10-Oct-1997  lukem WARNSify
 1.5 28-Apr-1995  mycroft Use tcflush().
 1.4 27-Apr-1995  mycroft Use POSIX signal and tty semantics.
 1.3 24-Apr-1995  cgd Various changes to make games compile w/o warnings on the alpha:
Include appropriate includes, delete bogus function declarations,
change sizes of variables and casts.
 1.2 21-Mar-1995  cgd add/fix id tags
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.16.8.1 09-Jan-2008  matt sync with HEAD
 1.17.6.1 18-Sep-2008  wrstuden Sync with wrstuden-revivesa-base-2.
 1.11 02-May-2021  rillig games: remove trailing whitespace in *.c and *.h
 1.10 19-Oct-2013  christos fix unused variable warnings
 1.9 01-Jul-2005  jmc branches: 1.9.42; 1.9.48;
KNF and WARNS=3
 1.8 27-Jan-2004  jsm Remove uses of __P.
 1.7 07-Aug-2003  agc Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22269, verified by myself.
 1.6 13-Mar-2000  soren Fix doubled 'the' in comment.
 1.5 08-Sep-1999  jsm Add use of `const' where appropriate to the games.

This merges in all such remaining changes from the Linux port of the
NetBSD games, except in hunt (where substantial changes from OpenBSD
need to be looked at).

Some such changes were previously covered in PRs bin/6041, bin/6146,
bin/6148, bin/6150, bin/6151, bin/6580, bin/6660, bin/7993, bin/7994,
bin/8039, bin/8057 and bin/8093.
 1.4 11-Oct-1997  lukem minor KNFify
 1.3 10-Oct-1997  lukem WARNSify
 1.2 21-Mar-1995  cgd add/fix id tags
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.9.48.1 20-Aug-2014  tls Rebase to HEAD as of a few days ago.
 1.9.42.1 22-May-2014  yamt sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
 1.10 01-Jul-2005  jmc KNF and WARNS=3
 1.9 27-Jan-2004  jsm Remove uses of __P.
 1.8 07-Aug-2003  agc Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22269, verified by myself.
 1.7 19-Sep-2002  mycroft Slight redux.
 1.6 19-Sep-2002  mycroft select() -> poll(), nanosleep()
 1.5 05-Feb-2001  christos fix nested extern
 1.4 10-Oct-1997  lukem WARNSify
 1.3 24-Apr-1995  cgd Various changes to make games compile w/o warnings on the alpha:
Include appropriate includes, delete bogus function declarations,
change sizes of variables and casts.
 1.2 21-Mar-1995  cgd add/fix id tags
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.10 02-May-2021  rillig games: remove trailing whitespace in *.c and *.h
 1.9 18-Mar-2006  rtr fclose() open FILE * even though we are returning to fail anyway.
silences coverity, CID 1590 / run 5
 1.8 01-Jul-2005  jmc KNF and WARNS=3
 1.7 07-Aug-2003  agc Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22269, verified by myself.
 1.6 05-Feb-2001  christos fix nested extern
 1.5 08-Sep-1999  jsm Add use of `const' where appropriate to the games.

This merges in all such remaining changes from the Linux port of the
NetBSD games, except in hunt (where substantial changes from OpenBSD
need to be looked at).

Some such changes were previously covered in PRs bin/6041, bin/6146,
bin/6148, bin/6150, bin/6151, bin/6580, bin/6660, bin/7993, bin/7994,
bin/8039, bin/8057 and bin/8093.
 1.4 11-Oct-1997  lukem minor KNFify
 1.3 10-Oct-1997  lukem WARNSify
 1.2 21-Mar-1995  cgd add/fix id tags
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.13 01-May-2018  christos Create a new bsd.hostinit.mk file and put the build definitions for all host
programs there; make all Makefiles that use bsd.hostprog.mk include it.
Namely turn off MKREPRO and don't make lint, man pages, info files etc.
Remove the Makefile.inc files that contained these same settings, and
remove the settings from Makefile.host
 1.12 18-Sep-2002  lukem branches: 1.12.94;
some makefile de-linting
 1.11 12-Dec-2001  tv MKfoo=no -> NOfoo=
 1.10 14-Apr-2000  simonb Greatly simplify these by using <bsd.hostprog.mk>. Should do the same
for games/hack and games/monop and a few other places, but that requires
making subdirs for the tools. One day...
 1.9 13-Feb-1999  lukem convert from NOxxx= to MKxxx=no.
include <bsd.own.mk> if testing a MKxxx variable.
 1.8 13-Apr-1998  lukem use HOST_CPPFLAGS not HOST_CFLAGS
 1.7 26-Oct-1997  lukem use CPPFLAGS instead of CFLAGS
 1.6 07-May-1997  mycroft branches: 1.6.2;
Use proginstall:: to disable installing PROG.
 1.5 28-Apr-1997  thorpej Allow boggle to be cross-compiled; the mkdict and mkindex programs
are used only by the hosting system.
 1.4 19-Apr-1997  thorpej Yow, cvs commit in the wrong directory... Bad, Jason, no biscuit!
 1.3 19-Apr-1997  thorpej Allow this to be cross-compiled.
 1.2 21-Mar-1995  cgd add/fix id tags
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.6.2.1 08-Nov-1997  lukem pull up rev 1.7 (approved by thorpej)
 1.12.94.1 02-May-2018  pgoyette Synch with HEAD
 1.12 02-May-2021  rillig games: remove trailing whitespace in *.c and *.h
 1.11 01-Jul-2005  jmc KNF and WARNS=3
 1.10 19-Apr-2005  rillig Fixed wrong use of the <ctype.h> functions by adding an explicit conversion
to unsigned char. Approved by christos.
 1.9 07-Aug-2003  agc Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22269, verified by myself.
 1.8 29-Aug-2001  jsm Ensure trailing newline is present on error and warning messages (lost
in previous conversion from <err.h> functions to ISO C ones).
 1.7 31-Jul-2000  simonb Don't use <sys/cdefs.h> __COPYRIGHT/__RCSID macros or <err.h> err/warnx
functions for host programs - use portable ANSI constructs instead.

Patches from Chris Demetriou.
 1.6 19-Sep-1999  jsm Further warning fix for mkdict.
 1.5 18-Sep-1999  jsm Warning cleanup for boggle's mkdict and mkindex.
 1.4 10-Sep-1999  jsm Check for write errors in auxiliary programs used during build of games.
 1.3 11-Oct-1997  lukem minor KNFify
 1.2 21-Mar-1995  cgd add/fix id tags
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.11 01-May-2018  christos Create a new bsd.hostinit.mk file and put the build definitions for all host
programs there; make all Makefiles that use bsd.hostprog.mk include it.
Namely turn off MKREPRO and don't make lint, man pages, info files etc.
Remove the Makefile.inc files that contained these same settings, and
remove the settings from Makefile.host
 1.10 18-Sep-2002  lukem branches: 1.10.94;
some makefile de-linting
 1.9 12-Dec-2001  tv MKfoo=no -> NOfoo=
 1.8 14-Apr-2000  simonb Greatly simplify these by using <bsd.hostprog.mk>. Should do the same
for games/hack and games/monop and a few other places, but that requires
making subdirs for the tools. One day...
 1.7 13-Feb-1999  lukem convert from NOxxx= to MKxxx=no.
include <bsd.own.mk> if testing a MKxxx variable.
 1.6 13-Apr-1998  lukem use HOST_CPPFLAGS not HOST_CFLAGS
 1.5 26-Oct-1997  lukem use CPPFLAGS instead of CFLAGS
 1.4 07-May-1997  mycroft branches: 1.4.2;
Use proginstall:: to disable installing PROG.
 1.3 28-Apr-1997  thorpej Allow boggle to be cross-compiled; the mkdict and mkindex programs
are used only by the hosting system.
 1.2 21-Mar-1995  cgd add/fix id tags
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.4.2.1 08-Nov-1997  lukem pull up rev 1.5 (approved by thorpej)
 1.10.94.1 02-May-2018  pgoyette Synch with HEAD
 1.12 02-May-2021  rillig games: remove trailing whitespace in *.c and *.h
 1.11 12-Aug-2009  dholland sprinkle static and prune some dead code
 1.10 01-Jul-2005  jmc KNF and WARNS=3
 1.9 07-Aug-2003  agc Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22269, verified by myself.
 1.8 31-Jul-2000  simonb Don't use <sys/cdefs.h> __COPYRIGHT/__RCSID macros or <err.h> err
function for host programs - use portable ANSI constructs instead.

Patches from Chris Demetriou.
 1.7 07-Dec-1999  jsm If the dictionary for boggle does not include words beginning with
every letter, add appropriate index lines. Problem reported by Mike
Castle <dalgoda@ix.netcom.com> against the Linux port of the NetBSD games
collection.
 1.6 18-Sep-1999  jsm branches: 1.6.4;
Warning cleanup for boggle's mkdict and mkindex.
 1.5 10-Sep-1999  jsm Check for write errors in auxiliary programs used during build of games.
 1.4 11-Sep-1998  hubertf remove unused args from main(), as per PR#5867
 1.3 11-Oct-1997  lukem minor KNFify
 1.2 21-Mar-1995  cgd add/fix id tags
 1.1 21-Oct-1994  jtc branches: 1.1.1;
Initial revision
 1.1.1.1 21-Oct-1994  jtc boggle(6), from 44lite
 1.6.4.1 27-Dec-1999  wrstuden Pull up to last week's -current.

RSS XML Feed