| History log of /src/games/sail/dr_5.c |
| Revision | | Date | Author | Comments |
| 1.15 |
| 01-Aug-2023 |
mrg | fix simple mis-matched function prototype and definitions.
most of these are like, eg
void foo(int[2]);
with either of these
void foo(int*) { ... } void foo(int[]) { ... }
in some cases (such as stat or utimes* calls found in our header files), we now match standard definition from opengroup.
found by GCC 12.
|
| 1.14 |
| 14-Mar-2009 |
dholland | Create some abstraction for sending messages. Make a send and receive function for each possible message. Make these have useful argument signatures. Hide the list of message codes inside sync.c.
|
| 1.13 |
| 14-Mar-2009 |
dholland | Lines <= 80 chars, remove trailing whitespace, other formatting adjustments. No functional change.
|
| 1.12 |
| 07-Aug-2003 |
agc | branches: 1.12.40; Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22269, verified by myself.
|
| 1.11 |
| 05-Feb-2001 |
christos | remove redundant decls.
|
| 1.10 |
| 04-Jan-2001 |
jwise | Normalize signature of ship handling functions -- struct ship * from and struct ship * to are now always the first two args.
|
| 1.9 |
| 04-Jan-2001 |
jwise | More rationalization of include files:
a.) Don't include a zillion system headers from "extern.h" (actually, don't include any). b.) Break a global jmp_buf variable into a new file, so <setjmp.h> doesn't have to be pulled in everywhere (it's only used in two places).
The (one line) new file is (c) TNF with a three-clause license, FW(L)IW.
|
| 1.8 |
| 04-Jan-2001 |
jwise | First half of static-ization of local funcs.
|
| 1.7 |
| 01-Jan-2001 |
jwise | ANSIfy in preparation for further work.
|
| 1.6 |
| 10-Feb-1999 |
hubertf | The game sail(6) has a function Write() which is used both with integer arguments and with string arguments (cast to long, and in one place to int). The patch here cleans this up, making it into two separate functions; this allows for the game to be made const-correct in future and improves portability.
The patch also contains two other fragments: a change to use the symbolic constant SEEK_END with fseek(), and a change to use snprintf in one place to avoid a buffer overrun.
Via PR 6569 by Joseph Myers <jsm28@cam.ac.uk>.
|
| 1.5 |
| 13-Oct-1997 |
christos | Warns fixes: use varargs properly use unsigned chars where appropriate fix typos eliminate gcc warnings
|
| 1.4 |
| 07-Jan-1997 |
tls | Sync to 4.4BSD-Lite2
|
| 1.3 |
| 22-Apr-1995 |
cgd | clean up import, NetBSD RCS IDs
|
| 1.2 |
| 01-Aug-1993 |
mycroft | Add RCS identifiers.
|
| 1.1 |
| 21-Mar-1993 |
cgd | branches: 1.1.1; Initial revision
|
| 1.1.1.3 |
| 28-Dec-1996 |
tls | Import from 4.4BSD-Lite2
|
| 1.1.1.2 |
| 22-Apr-1995 |
cgd | src/games/sail from Lite
|
| 1.1.1.1 |
| 21-Mar-1993 |
cgd | initial import of 386bsd-0.1 sources
|
| 1.12.40.1 |
| 13-May-2009 |
jym | Sync with HEAD.
Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
|