Remove C++ variable declaration after statement.

git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@217 db0b04b0-f4d1-0310-9a6d-de3e77497b0e
This commit is contained in:
Jilles Tjoelker 2004-02-02 20:51:37 +00:00
parent 38503b374a
commit 142b5d434e

View File

@ -161,6 +161,7 @@ ttypread (FILE * fp, Header * h, char **buf, int pread)
int counter = 0;
fd_set readfs;
struct timeval zerotime;
static int stripped = NO_GRAPHICS;
zerotime.tv_sec = 0;
zerotime.tv_usec = 0;
@ -188,7 +189,6 @@ ttypread (FILE * fp, Header * h, char **buf, int pread)
{ /* a user hits a character? */
char c;
read (STDIN_FILENO, &c, 1); /* drain the character */
static int stripped = NO_GRAPHICS;
switch (c)
{