win version was broken because wchar_t is unsigned in WIN32.
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@2070 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
@@ -130,7 +130,7 @@ mygetc (void)
|
||||
{
|
||||
int ch;
|
||||
if (eof_found)
|
||||
return (EOF);
|
||||
return EOF;
|
||||
ch = getc (bootfile);
|
||||
if (ch == EOF)
|
||||
eof_found = TRUE;
|
||||
@@ -140,7 +140,7 @@ mygetc (void)
|
||||
#endif
|
||||
yap_lineno++;
|
||||
}
|
||||
return (ch);
|
||||
return ch;
|
||||
}
|
||||
|
||||
static void
|
||||
|
Reference in New Issue
Block a user