avoid compilation issues with lack of gmp (Remko Troncon)

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1528 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc
2006-01-26 19:13:24 +00:00
parent 1fcc25ff3b
commit 7fa3e86284
4 changed files with 15 additions and 4 deletions

View File

@@ -425,7 +425,7 @@ get_num(int *chp, int *chbuffp, int inp_stream, int (*Nxtch) (int), int (*Quoted
{
char *sp = s;
int ch = *chp;
Int val = 0, base = ch - '0';
Int val = 0L, base = ch - '0';
int might_be_float = TRUE, has_overflow = FALSE;
*sp++ = ch;