- floating point conversion specifiers were disabled, leading to stack

errors if they were used.  They have been reenabled.
This commit is contained in:
gdr-ftp 1998-01-25 21:03:48 +00:00
parent 676fccce0c
commit 2d3f7dce1a
1 changed files with 3 additions and 1 deletions

View File

@ -52,7 +52,7 @@ static char sccsid[] = "@(#)vfscanf.c 8.1 (Berkeley) 6/4/93";
#endif
#include "local.h"
#undef FLOATING_POINT
#define FLOATING_POINT
#include "floatio.h"
#define BUF 513 /* Maximum length of numeric string. */
@ -712,6 +712,8 @@ literal:
}
nread += p - buf;
break;
#else
#error "we should be using FLOATING_POINT"
#endif /* FLOATING_POINT */
}
}