summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* use <termcap.h>lukem1997-10-142-10/+4
|
* define global vars with `extern' in "back.h", and only define once inlukem1997-10-142-50/+84
| | | init.c... backgammon works again...
* use <termcap.h>lukem1997-10-142-9/+4
|
* Include string.h.cjs1997-10-132-4/+6
|
* time_t != long, again. *Sigh*.cjs1997-10-131-3/+6
|
* Since we've got an int to store the value, why store it in a functioncjs1997-10-131-4/+4
| | | pointer and cast it?
* Include string.h for memcpy().cjs1997-10-131-2/+3
|
* #include <string.h>cjs1997-10-131-2/+3
|
* time_t != long; cast it.cjs1997-10-131-3/+3
|
* time_t != long; fix minor type problem.cjs1997-10-131-3/+5
|
* - make sure that the arguments to the printf like functions are correctchristos1997-10-1313-81/+103
| | | - add a makemsg() function to accompany makesignal.
* Warns fixes:christos1997-10-1325-605/+979
| | | | | | use varargs properly use unsigned chars where appropriate fix typos eliminate gcc warnings
* use <termcap.h> instead of <curses.h> for termcap(3) functionslukem1997-10-131-3/+3
|
* WARNSify, KNFify (inc. removing extremely verbose & useless comments), ...lukem1997-10-1312-6375/+4302
|
* Warnsify and remove local implementations of libc functions.christos1997-10-1253-756/+1039
|
* WARNSifychristos1997-10-1219-328/+564
|
* enable WARNS?=1 by default, & temporarily disable for the few unclean programslukem1997-10-127-7/+14
|
* getopt returns -1 not EOFlukem1997-10-121-2/+2
|
* deprecate autolukem1997-10-121-7/+7
|
* deprecate bzero, rindex, etc. use symbolic constants in open()lukem1997-10-124-13/+14
|
* WARNSifylukem1997-10-1214-106/+144
|
* WARNSify (not an insignificant task...)lukem1997-10-1225-602/+1139
|
* WARNSifylukem1997-10-122-26/+74
|
* WARNSifylukem1997-10-124-42/+71
|
* missed a couple of clock->ourclock and time->ourtime variable renameslukem1997-10-121-6/+6
|
* minor WARNSifylukem1997-10-123-53/+59
|
* WARNSify, KNFifylukem1997-10-125-547/+672
|
* WARNSifylukem1997-10-127-65/+68
|
* use err/warn instead of perrorlukem1997-10-122-14/+12
|
* WARNSifylukem1997-10-1215-206/+320
|
* common_source -> common, and GC some garbage variables.mycroft1997-10-112-7/+5
|
* Do the previous a little differently.mycroft1997-10-111-6/+2
|
* Don't install this library, we only need this during the build.veego1997-10-111-1/+4
|
* Only use SYMLINKS when PROG is defined.veego1997-10-111-1/+5
|
* Use bsd.subdir.mk as appropriate.mycroft1997-10-113-5/+8
|
* use err/warn instead of perrorlukem1997-10-117-74/+61
|
* use err/warn instead of perrorlukem1997-10-111-4/+4
|
* WARNSifylukem1997-10-111-24/+32
|
* WARNSify, deprecate registerlukem1997-10-111-50/+60
|
* minor KNFifylukem1997-10-112-17/+12
|
* use err/warn instead of perrorlukem1997-10-111-14/+9
|
* minor KNFifylukem1997-10-111-18/+11
|
* minor KNFifylukem1997-10-116-46/+44
|
* KNFify (with indent)lukem1997-10-1123-3797/+3796
|
* use warn instead of perror/fprintf/...lukem1997-10-112-11/+11
|
* KNFify againlukem1997-10-112-17/+6
|
* KNFifylukem1997-10-1112-1943/+2428
|
* WARNSify, KNFifylukem1997-10-1112-151/+167
|
* WARNSifylukem1997-10-108-68/+86
|
* Yet Another Monster Commit:lukem1997-10-1022-398/+740
| | | | | | | | | | | - WARNSify - getopt returns -1 not EOF - select() uses an fd_set, not int/long; modify code to use FD_* et al instead of direct bitwise operations - in otto.c::look (renamed to ottolook() to prevent name clash), the case WEST section had a 'goto cont_east', instead of 'goto cont_west'. (picked up by WARNS=1, because cont_west was an unused label because of this typo). probably meant that otto got lost in the maze :-/ - deprecate register, convert bcmp() -> memcmp()