diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-03-07 14:35:25 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2006-03-07 14:35:25 +0000 |
commit | 5a41e7b0e6300aa871b54231c60ea0a5e1ed55fa (patch) | |
tree | 6456fdd163e0ee2c5736b50400f545a3a79dcb77 /games | |
parent | 57040c624d95cac73018ab0c16076d8f4fc5f28e (diff) |
Fix prototype of is_digit(). From Alexey Dobriyan.
Diffstat (limited to 'games')
-rw-r--r-- | games/rogue/rogue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/rogue/rogue.h b/games/rogue/rogue.h index ed4c7eaefda..7ecc9e4a789 100644 --- a/games/rogue/rogue.h +++ b/games/rogue/rogue.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rogue.h,v 1.15 2006/03/06 04:41:18 deraadt Exp $ */ +/* $OpenBSD: rogue.h,v 1.16 2006/03/07 14:35:24 otto Exp $ */ /* $NetBSD: rogue.h,v 1.4 1995/04/24 12:25:04 cgd Exp $ */ /* @@ -565,7 +565,7 @@ void inv_armor_weapon(boolean); void inv_rings(void); void inventory(object *, unsigned short); boolean is_all_connected(void); -boolean is_digit(int); +boolean is_digit(short); boolean is_direction(short, short *); boolean is_pack_letter(short *, unsigned short *); boolean is_passable(short, short); |