summaryrefslogtreecommitdiffstats
path: root/hack/extern.h
diff options
context:
space:
mode:
authorjoerg <joerg@NetBSD.org>2011-05-30 03:11:15 +0000
committerjoerg <joerg@NetBSD.org>2011-05-30 03:11:15 +0000
commit99df729634e832cb8b9ea08ac14591532c9a51bd (patch)
tree84cd3c6f4f74a12630f4227c2ddd774023c19888 /hack/extern.h
parent442dc26bedaa4eead45edc2aa31a66f743544aff (diff)
downloadbsdgames-darwin-99df729634e832cb8b9ea08ac14591532c9a51bd.tar.gz
bsdgames-darwin-99df729634e832cb8b9ea08ac14591532c9a51bd.tar.zst
bsdgames-darwin-99df729634e832cb8b9ea08ac14591532c9a51bd.zip
Use consistent sign in compare, the function is only called with
constants as third argument anyway.
Diffstat (limited to 'hack/extern.h')
-rw-r--r--hack/extern.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hack/extern.h b/hack/extern.h
index fe8bdfc5..58fbf111 100644
--- a/hack/extern.h
+++ b/hack/extern.h
@@ -1,4 +1,4 @@
-/* $NetBSD: extern.h,v 1.13 2010/02/03 15:34:38 roy Exp $ */
+/* $NetBSD: extern.h,v 1.14 2011/05/30 03:11:15 joerg Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -249,7 +249,7 @@ void mkswamp(void);
/* hack.mon.c */
void movemon(void);
void justswld(struct monst *, const char *);
-void youswld(struct monst *, int, int, const char *);
+void youswld(struct monst *, int, unsigned int, const char *);
int dochug(struct monst *);
int m_move(struct monst *, int);
int mfndpos(struct monst *, coord[9 ], int[9 ], int);