summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix up some lint.dholland2011-08-0714-53/+63
|
* Fix up still more casts; use NULL instead of (char *)0.dholland2011-08-0614-55/+55
|
* Remove *another* set of useless casts. sheeshdholland2011-08-062-28/+28
|
* Remove more silly casts.dholland2011-08-0613-48/+48
|
* drop private (and wrong) definition of NULLdholland2011-08-061-6/+2
|
* Use the right type for the malloc wrapper function, and don't cast thedholland2011-08-0615-49/+48
| | | | | | | | return value. (XXX: Except for a pile of allocation macros that produce typed pointer results; there the typechecking of the result assignment is more valuable than the warning if the alloc function isn't declared properly. These macros should go away.)
* Remove silly casts.dholland2011-08-065-50/+50
|
* <sys/wait.h> is standard, so just use it instead of fiddling about withdholland2011-08-062-23/+4
| | | ifdefs for long-dead systems. While here, remove union wait.
* abolish references to index/rindexdholland2011-08-062-10/+3
|
* Remove the PYRAMID_BUG code. I don't think Pyramids are coming back, nordholland2011-08-062-12/+3
| | | do we care if their compiler vomits trying to decrement a bitfield.
* Don't refer to index() in comments; use strchr().dholland2011-08-061-3/+3
|
* Include system headers before private headers. Avoids various possibledholland2011-07-202-8/+8
| | | symbol conflicts.
* apply some -O0 with gcc 4.5 and vax.mrg2011-07-031-1/+5
|
* use DBL_MIN from <float.h> instead of a hard coded small value (thatmrg2011-07-031-3/+4
| | | becomes zero for vax fp.)
* include sys/time.h earlier (rather than implicitly via fcntl.h) so thatmrg2011-07-021-1/+2
| | | | | | | the "u" variable doesn't shadow stuff, found later in time.h inlines. kind of a hack, but i don't want to modify time.h either. XXX: seems kind of annoying
* rename a variable from "time" to "stime" (it's a string)mrg2011-07-021-5/+5
|
* apply some -Wno-error and/or -fno-strict-aliasing.mrg2011-06-221-1/+6
| | | | all of this should be looked at closer, but some of them are not very trivial.
* Use consistent sign in compare, the function is only called withjoerg2011-05-302-5/+5
| | | constants as third argument anyway.
* Map RCSID to __RCSIDjoerg2011-05-231-4/+3
|
* ANSIfyjoerg2011-05-231-22/+13
|
* Don't use variables as format string.joerg2011-05-231-4/+4
|
* Kill some pointer indirections. Don't use variables as format strings.joerg2011-05-235-16/+16
|
* ANSIfyjoerg2011-05-231-8/+3
|
* #if 0 some unused code.joerg2011-05-231-2/+7
|
* Don't use variables as format string.joerg2011-05-231-4/+4
|
* Correctly print variables as strings, not as format string.joerg2011-05-239-30/+32
|
* Properly print string.joerg2011-05-231-3/+3
|
* Don't use variables as format strings.joerg2011-05-231-7/+7
|
* ANSIfyjoerg2011-05-231-5/+3
|
* Don't use strings from arrays as format string.joerg2011-05-231-4/+4
|
* Don't use return value of a function as format string.joerg2011-05-231-3/+3
|
* Bug fix: in a game with 26 planes, the last one to be allocated wouldn'tis2011-02-151-3/+3
| | | | be allocated if it was the only eligible one. From Jonathan David Amery via Debian Bug report 214626.
* Fix spelling: it's *Jef* Raskin, not Jeff Raskin.dyoung2011-01-243-2/+3
|
* avoid unnecessary cast (hi wiz)dholland2011-01-051-5/+6
|
* Fix fd leak in error cases. Found by cppcheck.wiz2011-01-051-12/+12
|
* Fix realloc error. Found by cppcheck.wiz2011-01-051-3/+7
|
* Don't use the same name for two parameters.joerg2010-12-081-4/+4
|
* Use __c99inline from sys/cdefs.hjoerg2010-12-082-42/+1
|
* Fix a few of the games to use getprogname() in their usage() functions.pgoyette2010-12-054-12/+19
| | | | | | 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.
* Since this game is installed as 'boggle', fix the usage() text to match.pgoyette2010-12-051-3/+3
|
* add one i saw on irc todaypooka2010-11-251-0/+6
|
* Avoid undefined behavior, from Chris Spiegel in PR 43860.dholland2010-09-261-3/+3
|
* Rework the game startup so it uses curses nicely. There are now menusdholland2010-08-067-200/+1125
| | | and stuff for picking scenarios and ships and all that.
* Don't define esc-[ as a custom key sequence because it steps on vtdholland2010-08-061-3/+5
| | | function keys.
* Fix some additional typos/grammar slips.dholland2010-05-291-6/+6
|
* Fix dog-Latin. The plural of wumpus could be wumpi, wumpus, or even wumpora,dholland2010-05-291-5/+5
| | | but not 'wumpii'. Where does this -ii crap come from?
* Follow the Fundamental Theory of Algebra. Disallow factorising ofjoerg2010-05-152-14/+10
| | | | | | | | numbers less than 2 as it is not - naturally unique (negative numbers) - finite (0) - non-empty (1) Discussed with the kristaps and wiz
* \\ -> \ejoerg2010-05-141-2/+2
|
* cast isblank(3)'s argument to unsigned char.tnozaki2010-05-133-9/+9
|
* rename pollard_pminus1->pollard_rho for consistencydrochner2010-04-281-8/+6
|