diff options
| author | lukem <lukem@NetBSD.org> | 1997-10-10 16:32:15 +0000 |
|---|---|---|
| committer | lukem <lukem@NetBSD.org> | 1997-10-10 16:32:15 +0000 |
| commit | 50f99331097302f77db413ba7ad7299d928163eb (patch) | |
| tree | 376410fecfef0c2ac47f5b4f0643e6a84a373cdc /hunt/huntd/pathname.c | |
| parent | a25e10613cc56cac1b954b119f757a272dee9bc8 (diff) | |
| download | bsdgames-darwin-50f99331097302f77db413ba7ad7299d928163eb.tar.gz bsdgames-darwin-50f99331097302f77db413ba7ad7299d928163eb.zip | |
Yet Another Monster Commit:
- 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()
Diffstat (limited to 'hunt/huntd/pathname.c')
| -rw-r--r-- | hunt/huntd/pathname.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hunt/huntd/pathname.c b/hunt/huntd/pathname.c index 90b4d380..0f909f78 100644 --- a/hunt/huntd/pathname.c +++ b/hunt/huntd/pathname.c @@ -1,9 +1,15 @@ +/* $NetBSD: pathname.c,v 1.2 1997/10/10 16:33:49 lukem Exp $ */ /* * Hunt * Copyright (c) 1985 Conrad C. Huang, Gregory S. Couch, Kenneth C.R.C. Arnold * San Francisco, California */ +#include <sys/cdefs.h> +#ifndef lint +__RCSID("$NetBSD: pathname.c,v 1.2 1997/10/10 16:33:49 lukem Exp $"); +#endif /* not lint */ + /* * There is no particular significance to the numbers assigned * to Test_port. They're just random numbers greater than the |
