diff options
| author | hubertf <hubertf@NetBSD.org> | 1998-09-11 14:09:27 +0000 |
|---|---|---|
| committer | hubertf <hubertf@NetBSD.org> | 1998-09-11 14:09:27 +0000 |
| commit | 82ffe2923024a321ef9accecf677442946a20670 (patch) | |
| tree | 8eb47cba603f8ade2af6843e2a74ea3dfcfa4913 /rogue/pack.c | |
| parent | 7d7ca1d4e9a118107b3605d49e641959115dce1e (diff) | |
| download | bsdgames-darwin-82ffe2923024a321ef9accecf677442946a20670.tar.gz bsdgames-darwin-82ffe2923024a321ef9accecf677442946a20670.zip | |
fix prototypes, per PR#5867
Diffstat (limited to 'rogue/pack.c')
| -rw-r--r-- | rogue/pack.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rogue/pack.c b/rogue/pack.c index fdf0943d..f822468f 100644 --- a/rogue/pack.c +++ b/rogue/pack.c @@ -1,4 +1,4 @@ -/* $NetBSD: pack.c,v 1.4 1997/10/12 11:45:37 lukem Exp $ */ +/* $NetBSD: pack.c,v 1.5 1998/09/11 14:10:39 hubertf Exp $ */ /* * Copyright (c) 1988, 1993 @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)pack.c 8.1 (Berkeley) 5/31/93"; #else -__RCSID("$NetBSD: pack.c,v 1.4 1997/10/12 11:45:37 lukem Exp $"); +__RCSID("$NetBSD: pack.c,v 1.5 1998/09/11 14:10:39 hubertf Exp $"); #endif #endif /* not lint */ @@ -64,6 +64,7 @@ char *curse_message = "you can't, it appears to be cursed"; object * add_to_pack(obj, pack, condense) object *obj, *pack; + int condense; { object *op; @@ -106,6 +107,7 @@ take_from_pack(obj, pack) object * pick_up(row, col, status) short *status; + int row, col; { object *obj; |
