Changeset - c176163b664e
[Not reviewed]
0 1 0
HanzZ - 14 years ago 2011-10-21 10:27:00
hanzz.k@gmail.com
fixed dfrotz on windows
1 file changed with 3 insertions and 2 deletions:
0 comments (0 inline, 0 general)
backends/frotz/dfrotz/dumb/dumb_input.c
Show inline comments
 
@@ -81,9 +81,10 @@ static int xgetchar(void)
 
 * other places where I'm not so careful).  */
 
static void getline_(char *s)
 
{
 
	fflush(stdout);
 
  int c;
 
  char *p = s;
 
  char *p;
 
  fflush(stdout); 
 
  p = s;
 
  while (p < s + INPUT_BUFFER_SIZE - 1)
 
    if ((*p++ = xgetchar()) == '\n') {
 
      *p = '\0';
0 comments (0 inline, 0 general)