diff options
author | Thierry Deval <tdeval@cvs.openbsd.org> | 2003-05-07 09:48:58 +0000 |
---|---|---|
committer | Thierry Deval <tdeval@cvs.openbsd.org> | 2003-05-07 09:48:58 +0000 |
commit | c4fc169dda87c72986c6289cda73af58d9525ad0 (patch) | |
tree | c1f83121a66300e511baa11937369bd3650633b8 /games/hack/hack.h | |
parent | cec4fba2d68884e9da4662a55153a523a76eb5f2 (diff) |
Major strings rework. Ok pjanzen@
Diffstat (limited to 'games/hack/hack.h')
-rw-r--r-- | games/hack/hack.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/hack/hack.h b/games/hack/hack.h index c52c0626567..910f602c34d 100644 --- a/games/hack/hack.h +++ b/games/hack/hack.h @@ -1,4 +1,4 @@ -/* $OpenBSD: hack.h,v 1.6 2003/03/16 21:22:35 camield Exp $*/ +/* $OpenBSD: hack.h,v 1.7 2003/05/07 09:48:57 tdeval Exp $*/ /* $NetBSD: hack.h,v 1.3 1995/03/23 08:30:21 cgd Exp $*/ /* @@ -206,7 +206,7 @@ extern long moves; extern int multi; -extern char lock[]; +extern char lock[PL_NSIZ+4]; #define DIST(x1,y1,x2,y2) (((x1)-(x2))*((x1)-(x2)) + ((y1)-(y2))*((y1)-(y2))) |