summaryrefslogtreecommitdiffstats
path: root/atc
Commit message (Collapse)AuthorAgeFilesLines
* games: remove trailing whitespace in *.c and *.hrillig2021-05-057-51/+51
|
* Use PREFIX nowCameron Katri2021-03-282-10/+12
|
* Get all the games compiling for iOSCameron Katri2021-02-222-17/+28
|
* Report the users score _after_ the game has ended and the screen haspgoyette2019-03-191-2/+8
| | | | | | been restored to pre-game state. Otherwise, the user gets a message that their score did (or more likely, did not) improve over their previous score, yet the user has no indication of what the current score actually was!
* ned stat.hchristos2017-01-101-2/+3
|
* Use An in AUTHORS section.wiz2015-07-261-2/+5
|
* Sync descriptive text with actual game definition.pgoyette2015-07-231-2/+2
|
* Move game logic out of the file with the curses code.dholland2015-06-254-60/+89
|
* Abolish the foul practice of including every header in existence via adholland2015-06-1911-101/+101
| | | single central "include.h". Use only headers that are actually needed.
* Make the list of place types an enumeration. Use unsigned values fordholland2014-03-226-29/+30
| | | place numbers.
* use a more suitable typedholland2014-03-221-3/+4
|
* use more suitable typesdholland2014-03-223-11/+13
|
* woops, more of previous.dholland2014-03-222-7/+7
|
* Make some things unsigned that should be (why would we need e.g. adholland2014-03-224-45/+52
| | | negative number of airports?) and remove some related bogus casts.
* Don't cast the return value of malloc.dholland2014-03-222-13/+13
|
* Don't use ++ to set flags to true. Now passes -Wstrict-overflow.dholland2012-10-121-7/+7
|
* document non-literal format stringschristos2011-08-161-1/+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.
* When using -lcurses, you also need -lterminfo.he2010-02-061-3/+3
| | | | This fixes the build for sun2, and also builds with LDSTATIC=-static, since archive libraries don't record inter-library dependencies.
* use %option noinput nounputchristos2009-10-292-4/+5
|
* sprinkle staticdholland2009-08-128-113/+112
|
* sprintf -> snprintfdholland2009-05-263-18/+26
|
* attribute noreturn -> __deaddholland2009-05-251-3/+3
|
* define YY_NO_INPUT where appropriate, from Kurt J. Lidl per PR misc/41160drochner2009-04-201-2/+2
|
* if initscr() fails, exit with a message rather than crash in thedrochner2008-08-081-3/+4
| | | next curses call
* Remove the \n and tabs from the __COPYRIGHT() strings.lukem2008-07-201-4/+4
|
* Fix y2038 bug: time_t != int.dholland2008-01-313-10/+13
|
* Make the default WARNS for games 4. The only game that needs to set WARNSdholland2008-01-281-2/+1
| | | to anything else now is rogue, so clear WARNS from the other makefiles.
* convert __attribute__s to applicable cdefs.h macrosperry2007-12-154-25/+25
|
* s/exceded/exceeded/, from Zafer.wiz2006-11-241-3/+3
|
* Input validation, from David A. Holland on #NetBSD-codeelad2006-10-071-6/+18
|
* Increase username length to match modern systems, and create #defines for ajnemeth2006-06-071-2/+4
| | | couple of lengths.
* Actually accept "?" argument as documented in the manpage.jnemeth2006-06-071-16/+14
| | | | Don't attempt to ignore an untrappable signal. Fix 6 possible buffer overflows.
* Don't follow symlinks on systems that have O_NOFOLLOW.jnemeth2006-06-071-5/+9
| | | | Don't bother looping with lockf() since first iteration would return. Prevent two buffer overflows.
* prevent "stack" overflowjnemeth2006-06-072-3/+5
|
* bracket else blockjnemeth2006-06-071-3/+4
|
* WARNS=4jnemeth2006-06-071-2/+2
|
* Add missing parens.christos2006-03-221-4/+4
|
* Simplify (Masao Uebayashi)christos2006-03-221-6/+6
|
* Coverity CID 692: Another && that should be ||. Boy...christos2006-03-221-3/+3
|
* Coverity CID 1786: Close file.christos2006-03-181-2/+3
|
* Use standard AUTHORS section header. From YOMURA Masanori in private mailwiz2005-09-151-2/+2
| | | Sort sections if necessary. Use more/better markup.
* Added a missing '-' in score list output.rpaulo2005-08-101-3/+3
|
* Pass lint(1).rpaulo2005-08-107-248/+271
|
* Enable WARNS=3.rpaulo2005-08-101-1/+2
|
* Fixed an output bug where a new-line was added due the usage of puts(3).rpaulo2005-08-101-4/+4
|
* KNF and WARNS=3 fixesjmc2005-07-019-244/+185
|
* Cast last argument of execl to (char *).jsm2005-02-151-4/+4
| | | Reviewed by <hubertf>.
* Replaced strncpy with strlcpy. Thanks to Peter Postma whojrf2004-09-071-4/+3
| | | pointed them our in PR #25762. Approved by christos@NetBSD.org.
* Remove uses of __P.jsm2004-01-272-81/+81
|