aboutsummaryrefslogtreecommitdiff
path: root/games
Commit message (Collapse)AuthorAgeFilesLines
* End of comment was missing at FreeBSD Id line. Switch to FBSDID.Philippe Charnier2002-04-121-1/+4
| | | | Notes: svn path=/head/; revision=94552
* Add a few more tips, and tweak a couple.Josef Karthauser2002-04-011-2/+15
| | | | | | | PR: misc/34039 Notes: svn path=/head/; revision=93518
* Augment the BLOCKSIZE tip. (Based on the PR with slight changes by myself).Josef Karthauser2002-04-011-1/+3
| | | | | | | PR: misc/34039 Notes: svn path=/head/; revision=93516
* Add a new fortune seen in the sig of an e-mail.John Baldwin2002-03-291-0/+2
| | | | | | | | Submitted by: ue (indirectly) Approved by: eivind Notes: svn path=/head/; revision=93397
* o remove __PWarner Losh2002-03-245-87/+87
| | | | Notes: svn path=/head/; revision=93063
* Remove a duplicate with a typo.Jens Schweikhardt2002-03-231-6/+0
| | | | | | | MFC after: 3 days Notes: svn path=/head/; revision=93054
* Assorted mechanical fixes.Dima Dorfman2002-03-093-4/+4
| | | | | | | | PR: 34790 Submitted by: Mike Makonnen <mike_makonnen@yahoo.com> Notes: svn path=/head/; revision=91927
* Add one.Poul-Henning Kamp2002-02-251-0/+4
| | | | | | | | Submitted by: jedgar Reviewed by: The usual gang of idiots in that IRC channel. Notes: svn path=/head/; revision=91251
* #include <time.h> for the definition of time functions instead ofBruce Evans2002-02-251-3/+4
| | | | | | | | | depending on namespace pollution 2 layers deep in <sys/stat.h>. Sorted includes. Removed some unused includes. Notes: svn path=/head/; revision=91213
* BDECFLAGSBill Fumerola2002-02-231-6/+8
| | | | | | | Reviewed by: md5(1) Notes: svn path=/head/; revision=91138
* KNF -> ANSI function declarationsBill Fumerola2002-02-231-6/+3
| | | | | | | Reviewed by: md5(1) Notes: svn path=/head/; revision=91137
* KNF to ANSI function declaration, silence a warningBill Fumerola2002-02-231-14/+9
| | | | Notes: svn path=/head/; revision=91136
* warning fixes, mostly type matchingBill Fumerola2002-02-234-10/+10
| | | | Notes: svn path=/head/; revision=91135
* convert from KNR to ANSI function declarationsBill Fumerola2002-02-239-114/+92
| | | | | | | Reviewed by: md5(1) Notes: svn path=/head/; revision=91134
* staticize functions and variablesBill Fumerola2002-02-212-19/+17
| | | | | | | | | change function declarations to ANSI change a variable that stores sizeof() values to size_t use return to escape the end of main(), not exit(3) Notes: svn path=/head/; revision=91027
* use the typedef 'ubig' to declare pr_limit, not what ubig is typedef'dBill Fumerola2002-02-211-1/+1
| | | | | | | | | | | to be. PR: misc/35181 Submitted by: Stefan Farfeleder <e0026813@stud3.tuwien.ac.at> MFC after: 3 days Notes: svn path=/head/; revision=91026
* o Move NTOHL() and associated macros into <sys/param.h>. These areMike Barcroft2002-02-183-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | deprecated in favor of the POSIX-defined lowercase variants. o Change all occurrences of NTOHL() and associated marcros in the source tree to use the lowercase function variants. o Add missing license bits to sparc64's <machine/endian.h>. Approved by: jake o Clean up <machine/endian.h> files. o Remove unused __uint16_swap_uint32() from i386's <machine/endian.h>. o Remove prototypes for non-existent bswapXX() functions. o Include <machine/endian.h> in <arpa/inet.h> to define the POSIX-required ntohl() family of functions. o Do similar things to expose the ntohl() family in libstand, <netinet/in.h>, and <sys/param.h>. o Prepend underscores to the ntohl() family to help deal with complexities associated with having MD (asm and inline) versions, and having to prevent exposure of these functions in other headers that happen to make use of endian-specific defines. o Create weak aliases to the canonical function name to help deal with third-party software forgetting to include an appropriate header. o Remove some now unneeded pollution from <sys/types.h>. o Add missing <arpa/inet.h> includes in userland. Tested on: alpha, i386 Reviewed by: bde, jake, tmm Notes: svn path=/head/; revision=90868
* Fix last second botch of adding $FreeBSD$.Warner Losh2002-02-182-2/+2
| | | | Notes: svn path=/head/; revision=90830
* Remove __PWarner Losh2002-02-1835-300/+267
| | | | | | | | | Remove __STDC__ (which means we now use stdarg rather than vararg) Remove register Remove main prototype Notes: svn path=/head/; revision=90828
* Add a tip about pkg_info and checking for multiple installed versionsGiorgos Keramidas2002-02-111-0/+6
| | | | | | | of a package/port. Notes: svn path=/head/; revision=90516
* Don't declare our own common version of the library variable `ospeed'.Bruce Evans2002-02-021-1/+1
| | | | | | | | | | Include <termcap.h> to get its declaration. Our initialization of it is still dubious, but it agrees with ncurses' documentation of it (none) and with ncurses' recently fixed internals for it (old speeds from <sys/ttydev.h>) and with the 4.4Lite documentation for it. Notes: svn path=/head/; revision=90118
* Don't declare the library variable `ospeed' without even getting itsBruce Evans2002-02-021-2/+1
| | | | | | | | | | | type correct. Include <termcap.h> to get its declaration. Our initialization of it is still dubious, but it agrees with ncurses' documentation of it (none) and with ncurses' recently fixed internals for it (old speeds from <sys/ttydev.h>) and with the 4.4Lite documentation for it. Notes: svn path=/head/; revision=90117
* Don't declare our own common version of the library variable `ospeed'Bruce Evans2002-02-021-1/+1
| | | | | | | | | | | without even getting its type correct. Include <termcap.h> to get its declaration. Our initialization of it is still dubious, but it agrees with ncurses' documentation of it (none) and with ncurses' recently fixed internals for it (old speeds from <sys/ttydev.h>) and with the 4.4Lite documentation for it. Notes: svn path=/head/; revision=90116
* Clean up G. B. Shaw quotes:Thomas Gellekum2002-01-072-65/+7
| | | | | | | | | | | - fix missing punctuation, - remove duplicates in fortunes2, - don't abbreviate first names. Remove duplication of Shaw's principle in fortunes2. Notes: svn path=/head/; revision=89008
* Correct typo.Greg Lehey2002-01-011-1/+1
| | | | Notes: svn path=/head/; revision=88753
* Fix a typo. While 'iff' might make sense in a mathematics-related text,Peter Pentchev2001-12-271-1/+1
| | | | | | | | | | 'if and only iff' does not. PR: 33242 Submitted by: Eric Yu <ericyu@mail2000.com.tw> Notes: svn path=/head/; revision=88530
* A case of ninfo (non-info)Wilko Bulte2001-12-201-0/+4
| | | | | | | | Submitted by: Hans.VanSluis@compaq.com MFC after: 1 month Notes: svn path=/head/; revision=88305
* Install files via FILES.Ruslan Ermilov2001-12-178-26/+19
| | | | Notes: svn path=/head/; revision=88058
* FILES support for bsd.prog.mk. See bsd.README for details.Ruslan Ermilov2001-12-171-7/+2
| | | | | | | Stolen from: NetBSD Notes: svn path=/head/; revision=88055
* Modify tip that no longer applies for ftp(1).Mike Heffner2001-12-171-2/+2
| | | | Notes: svn path=/head/; revision=88035
* Unix: Just Say No..Wilko Bulte2001-12-121-0/+19
| | | | | | | | Obtained from: Jan.Hendriks@Compaq.com MFC after: 3 days Notes: svn path=/head/; revision=87726
* Be more specific in an example of fortune's -e option.Giorgos Keramidas2001-12-081-1/+1
| | | | | | | | PR: 32085 Submitted by: setantae@submonkey.net <setantae@submonkey.net> Notes: svn path=/head/; revision=87521
* Trim yet another duplicate fortune.John Baldwin2001-12-051-2/+0
| | | | Notes: svn path=/head/; revision=87429
* Properly sort the last two fortunes alphabetically.John Baldwin2001-12-051-28/+28
| | | | Notes: svn path=/head/; revision=87428
* Add a short commentary on libdialog by jkh.John Baldwin2001-12-051-0/+13
| | | | Notes: svn path=/head/; revision=87427
* Remove an incorrect duplicate Douglas Adam quote and properly format andJohn Baldwin2001-12-051-10/+4
| | | | | | | | the correct duplicate. Both versions also attributed the quote to the wrong book. Notes: svn path=/head/; revision=87425
* Fix a typo and add a missing period.John Baldwin2001-12-051-2/+2
| | | | Notes: svn path=/head/; revision=87424
* Remove some duplicate fortunes.John Baldwin2001-12-051-21/+0
| | | | Notes: svn path=/head/; revision=87420
* s/Kenned y/Kennedy/Poul-Henning Kamp2001-11-271-1/+1
| | | | | | | Pointed out by: $a_lot_of_people Notes: svn path=/head/; revision=86989
* This string of coincidences was too good to let pass.Poul-Henning Kamp2001-11-271-0/+22
| | | | | | | Obtained from: BBC World Service on 9410kHz Notes: svn path=/head/; revision=86986
* Fix some duplicate quotes and tidy up some Dr. Who quotes.Peter Wemm2001-11-271-12/+3
| | | | Notes: svn path=/head/; revision=86961
* Other committers do not mention their personal names and/or emailGiorgos Keramidas2001-11-191-14/+0
| | | | | | | | | | addresses when adding stuff, so it seems fair to stop ``getting all the fame'' by having my name displayed on login sessions. Approved by: nik Notes: svn path=/head/; revision=86620
* Fix a typo:Josef Karthauser2001-11-121-1/+1
| | | | | | | | | Flinstone -> Flintstone. Submitted by: grog (during the kernel debugging session at BSDConEurope) Notes: svn path=/head/; revision=86296
* Add terminating % so the last fortune can be found.Matthew Dillon2001-11-091-0/+7
| | | | | | | Add a fortune. Notes: svn path=/head/; revision=86216
* Separate concatenated fortunes.Poul-Henning Kamp2001-11-031-18/+10
| | | | | | | | Remove unattributed duplicate of Frederick Brooks eternal words about the danger of second systems. Notes: svn path=/head/; revision=85977
* Correct attribution and fix translation from Danish.Poul-Henning Kamp2001-11-031-4/+2
| | | | Notes: svn path=/head/; revision=85976
* Correct attribution.Jeroen Ruigrok van der Werven2001-10-281-1/+1
| | | | | | | | PR: 30500 Submitted by: Drew Derbyshire <ahd@kew.org> Notes: svn path=/head/; revision=85625
* Correct a typo: numtiple -> multiple.Peter Pentchev2001-10-241-1/+1
| | | | | | | | | PR: 31474 Submitted by: Eric Yu <ericyu@mail2000.com.tw> MFC after: 1 week Notes: svn path=/head/; revision=85408
* Slightly improve wording in the opening paragraph.Dima Dorfman2001-10-141-1/+1
| | | | | | | | PR: 31202 Submitted by: Jasmin Blanchette <jasmin@troll.no> Notes: svn path=/head/; revision=84944
* Add some important advice for young optical physicists.Kris Kennaway2001-10-051-0/+2
| | | | Notes: svn path=/head/; revision=84536