diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2013-04-05 01:28:28 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2013-04-05 01:28:28 +0000 |
commit | 0b22743b3958bba7033adb66971e6af656e5f4b8 (patch) | |
tree | ced0b078a315bd04f1ebcabf11a509266e48e703 /games | |
parent | fd5d47d0cd3d114ad5feeb958841fc6aff7f276f (diff) |
this doesn't need to be time_t ok deraadt
Diffstat (limited to 'games')
-rw-r--r-- | games/battlestar/extern.h | 4 | ||||
-rw-r--r-- | games/battlestar/globals.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/games/battlestar/extern.h b/games/battlestar/extern.h index 0e26e882e11..beff427cb55 100644 --- a/games/battlestar/extern.h +++ b/games/battlestar/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.13 2003/06/03 03:01:38 millert Exp $ */ +/* $OpenBSD: extern.h,v 1.14 2013/04/05 01:28:27 tedu Exp $ */ /* $NetBSD: extern.h,v 1.5 1995/04/24 12:22:18 cgd Exp $ */ /* @@ -281,7 +281,7 @@ extern int wordcount, wordnumber; extern int stop_cypher; /* continue parsing the current line? */ /* state of the game */ -extern time_t ourtime; +extern int ourtime; extern int position; extern int direction; extern int left, right, ahead, back; diff --git a/games/battlestar/globals.c b/games/battlestar/globals.c index cd8d62d17db..72fdc9e741d 100644 --- a/games/battlestar/globals.c +++ b/games/battlestar/globals.c @@ -1,4 +1,4 @@ -/* $OpenBSD: globals.c,v 1.13 2009/10/27 23:59:24 deraadt Exp $ */ +/* $OpenBSD: globals.c,v 1.14 2013/04/05 01:28:27 tedu Exp $ */ /* $NetBSD: globals.c,v 1.3 1995/03/21 15:07:32 cgd Exp $ */ /* @@ -242,7 +242,7 @@ int wordcount, wordnumber; int stop_cypher; /* continue parsing the current line? */ /* state of the game */ -time_t ourtime; +int ourtime; int position; int direction; int left, right, ahead, back; |