diff options
| author | dholland <dholland@NetBSD.org> | 2014-03-29 19:41:10 +0000 |
|---|---|---|
| committer | dholland <dholland@NetBSD.org> | 2014-03-29 19:41:10 +0000 |
| commit | b432256ee8cb43f841c457f6d542c54fc98291e0 (patch) | |
| tree | be5c4234c2eb39a573a0c172953d2d5a5210c2e7 /hunt/huntd/extern.c | |
| parent | fa3a22500af8a864dcb4e24df60437f2c8503df7 (diff) | |
| download | bsdgames-darwin-b432256ee8cb43f841c457f6d542c54fc98291e0.tar.gz bsdgames-darwin-b432256ee8cb43f841c457f6d542c54fc98291e0.zip | |
don't declare own boolean type
Diffstat (limited to 'hunt/huntd/extern.c')
| -rw-r--r-- | hunt/huntd/extern.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hunt/huntd/extern.c b/hunt/huntd/extern.c index bee6851c..9faeea30 100644 --- a/hunt/huntd/extern.c +++ b/hunt/huntd/extern.c @@ -1,4 +1,4 @@ -/* $NetBSD: extern.c,v 1.6 2009/08/12 07:42:11 dholland Exp $ */ +/* $NetBSD: extern.c,v 1.7 2014/03/29 19:41:10 dholland Exp $ */ /* * Copyright (c) 1983-2003, Regents of the University of California. * All rights reserved. @@ -32,13 +32,13 @@ #include <sys/cdefs.h> #ifndef lint -__RCSID("$NetBSD: extern.c,v 1.6 2009/08/12 07:42:11 dholland Exp $"); +__RCSID("$NetBSD: extern.c,v 1.7 2014/03/29 19:41:10 dholland Exp $"); #endif /* not lint */ #include "hunt.h" #if 0 /*def MONITOR*/ /* apparently unused (XXX?) */ -FLAG Am_monitor = FALSE; /* current process is a monitor */ +bool Am_monitor = false; /* current process is a monitor */ #endif char Buf[BUFSIZ]; /* general scribbling buffer */ |
