summaryrefslogtreecommitdiff
path: root/games
AgeCommit message (Collapse)Author
2015-10-25just dump the help on stdout with messing about with a pager.Ted Unangst
makes pledge much simpler. from jan stary
2015-10-24Cast toupper()'s argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' arguments to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' arguments to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' arguments to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' arguments to unsigned char.mmcc
ok guenther@
2015-10-24Cast isdigit()'s argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast isdigit()'s argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast islower()'s argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' arguments to unsigned char.mmcc
ok guenther@
2015-10-24Cast isprint()'s argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast toupper()'s argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' arguments to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' arguments to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' arguments to unsigned char.mmcc
ok guenther@
2015-10-24Cast isdigit()'s argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast isalpha()'s argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast isblank()'s argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast isdigit()'s argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast isblank()'s argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast toupper()'s argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast islower()'s argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast islower()'s argument to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' arguments to unsigned char.mmcc
ok guenther@
2015-10-24Cast ctype functions' arguments to unsigned char.mmcc
ok guenther@
2015-10-23include err.h for err() calls added with recent pledge commits.Jonathan Gray
2015-10-22Pledge "stdio rpath tty" for hangman(6).Doug Hogan
Patch submitted by Ricardo Mestre <serial@helheim.mooo.com> ok semarie@
2015-10-16Disable !-command to escape to a shell. You are supposed to play, pressTobias Stoeckmann
^Z, or open up another terminal if there is something else to do. ok deraadt
2015-10-14Pledge "stdio" for simple games.Doug Hogan
ok semarie@
2015-10-14enable pledge(2) in rain(6)Sebastien Marie
it is libcurses program: at init it needs "stdio rpath getpw tty", and after drop to just "stdio tty". "tty" is needed at end for restoring the tty. initial patch from doug@ ok doug@ deraadt@
2015-10-10Pledge that arithmetic only takes "stdio".Doug Hogan
2015-09-27Delete pointless NOSTRICT commentsPhilip Guenther
2015-09-27Make prompt() properly printf-like, eliminating empty dummy argsPhilip Guenther
2015-09-27Annotate funcs with __attribute__((printf(...))) and clean up the fallout:Philip Guenther
* lots of foo(str) --> foo("%s", str) transformations * one totally insane foo(fmt, ap) --> vfoo(fmt, ap) conversion: how did this ever work? * prefer const char[] over char* for static format strings, as it lets gcc check the format and eliminates an unnecessary pointer ok beck@
2015-09-27Delete obsolete lint commentsPhilip Guenther
ok beck@
2015-09-27Make -Wformat=2 happier with a few foo(str) -> foo("%s", str) fixesPhilip Guenther
ok beck@
2015-09-25Fix -D in the synopsis line:Ingo Schwarze
* Whitespace is allowed between -D and the variable name. * Each -D option only takes one single assignment. * Drop excessive .Sm macro.
2015-09-25use | rather than / for alternatives and some macro fixesIngo Schwarze
2015-09-16big blocks need braces for supportTed Unangst
2015-09-12use .Cm rather than .Ar for fixed string argumentsIngo Schwarze
2015-09-10reduce .Nd to one line and kill .Tn while hereIngo Schwarze
2015-09-07cosmetic fixesTed Unangst
2015-08-26remove #ifdef OK_TO_WRITE_DISK which isn't used by default.Sebastien Marie
and few disambiguisations suggested by cc(1) - parentheses around && within || - explicit braces to avoid ambiguous 'else' ok doug@