summaryrefslogtreecommitdiffstats
path: root/games
Commit message (Collapse)AuthorAgeFilesLines
* Wrong filename for dictionary in manpage.phk1998-08-041-1/+1
| | | | | | PR: 7467 Reviewed by: phk Submitted by: Ben Walter <bwalter@itachi.swcp.com>
* Remove comment relevant to 16bit integers only.imp1998-07-261-2/+0
|
* o Fix Y2K buffer overflow.imp1998-07-261-4/+2
| | | | o Fix zero filling bug in all years % 100 < 10.
* Y2K fix. Fix by jsm28@cam.ac.uk via OpenBSDimp1998-07-261-1/+1
|
* Fix discrepancy between sources and manual page for the 'c' command.jkoshy1998-07-201-11/+1
| | | | PR: docs/6003
* Buffer overflow.phk1998-07-091-1/+1
| | | | | | PR: 7195 Reviewed by: phk Submitted by: Anders Thulin <Anders.x.thulin@telia.se>
* Use the installed versions of caesar and strfile. They are nowbde1998-07-071-19/+3
| | | | | | bootstrapped by `make world', and the installed versions are just as likely to work as the installed version of cc if `make' is run directly.
* Added a `build-tools' target for internal tools.bde1998-07-071-1/+3
| | | | Honor LDFLAGS for building internal tools.
* Added a `build-tools' target for internal tools.bde1998-07-071-5/+7
| | | | | | | | | Honor LDFLAGS for building internal tools. Always build intermediate object files explicitly so that binaries don't change when they are rebuilt. Fixed some style bugs.
* Added a `build-tools' target for internal tools.bde1998-07-071-0/+5
| | | | | | Restored a variant of explicit rule for `setup', with modifications to always build setup.o so that `setup' doesn't change every time it is rebuilt because it has a temporary file name in it.
* Fixed printf format errors.bde1998-06-308-21/+22
|
* Fixed (1970's style) missing declaration of a function that doesn'tbde1998-06-301-0/+2
| | | | return int.
* Fixed printf format errors. Didn't fix gross homemade varargs functionbde1998-06-301-1/+1
| | | | | Write(). Pointers are passed to it as longs, but it expects them to be passed as ints. The alpha non-fixes made this worse.
* Fixed the type of yyerror() (1970's style).bde1998-06-301-0/+1
|
* Cast pointers to longs, not ints.jb1998-05-091-3/+3
| | | | | Hopefully that's the last of the 64-bit cleaning of src/games. That is, without adding -Wall to the compiler flags. That's not a pretty sight.
* Change long variable to time_t where it is passed to time() by reference.jb1998-05-091-1/+1
|
* Add #include string.h to get prototypes.jb1998-05-092-0/+2
|
* Add #include string.h to get prototypes and change variables from longjb1998-05-092-3/+5
| | | | to time_t where they are passed to time() and localtime() by reference.
* Remove bogus time() prototype and let the one in time.h rule.jb1998-05-091-1/+0
|
* Add #include string.h to get prototypes.jb1998-05-093-0/+3
|
* Cast pointers to long instead of int.jb1998-05-094-9/+9
|
* Add #include string.h to get prototypes.jb1998-05-093-0/+3
|
* Change casts of function pointers from int to long. This makes thejb1998-05-096-7/+7
| | | | | | compiler warnings go away, but the compiler is throwing away 32-bits as the long value is silently truncated to an int on alpha. But the program works, so that must not matter.
* Add #include string.h to get prototypes.jb1998-05-093-0/+3
|
* Change long variable to time_t because it passed to time() and ctime().jb1998-05-091-1/+1
|
* Change long variables to time_t if they are passed to time() or localtime()jb1998-05-091-3/+3
| | | | be reference.
* Add #include string.h to get prototypes.jb1998-05-092-0/+2
|
* Change variable types from long to time_t if they are passed to time()jb1998-05-094-6/+7
| | | | by reference.
* Remove #define NULL because stdio.h does that.jb1998-05-091-1/+0
|
* Add #include string.h to get prototypes.jb1998-05-091-0/+1
|
* Add #include string.h to get prototypes.jb1998-05-092-0/+2
|
* tv_sec in timeval is a long, and a time_t is not necessarily a long.jb1998-05-091-2/+4
|
* Add #include string.h to get prototypes.jb1998-05-093-0/+3
|
* Add 'extern' to arrays that are declared and initialised elsewhere.jb1998-05-091-5/+5
|
* Add 'extern' to arrays that are declared and initialised in other files.jb1998-05-091-12/+12
|
* Add 'extern' to arrays that are declared and initialised in other files.jb1998-05-091-2/+2
| | | | Who writes code like this?!
* Add #include stdlib.h to get prototypes.jb1998-05-091-0/+1
|
* Change prototype for addbuf to make it compatible with tputs now thatjb1998-05-091-2/+3
| | | | there is a prototype to check it against.
* Add #include string.h, stdlib.h and termcap.h to get prototypes.jb1998-05-091-1/+4
| | | | | Change prototype for addbuf to make it compatible with tputs now that there is a prototype to check it against.
* Add #include string to get prototypes.jb1998-05-091-0/+1
|
* Add 'extern' to those arrays that are declared and initialisedjb1998-05-091-3/+3
| | | | in other files.
* Add #include string.h to get prototypes.jb1998-05-096-0/+6
|
* Add #include stdlib.h to get prototypes.jb1998-05-091-0/+1
|
* Add #include string.h to get prototypes.jb1998-05-091-0/+1
|
* Alphas don't necessarily have speakers.jb1998-05-091-0/+3
|
* Added y.tab.h to SRCS. This should have been used to get dependenciesbde1998-05-051-1/+1
| | | | | on y.tab.h generated. It will soon be used to tell bsd.dep.mk that y.tab.h itself needs to be generated.
* Fixed races in `make -jN' using new yacc rules.bde1998-05-041-2/+1
|
* *** empty log message ***peter1998-04-273-11/+11
|
* Exit(-1) -> exit(1).charnier1998-04-011-1/+1
|
* Add prototypes, usage(). Add Id.charnier1998-04-011-2/+3
|
OpenPOWER on IntegriCloud