summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/as/expr.c
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1996-10-01 00:13:54 +0000
committerPeter Wemm <peter@FreeBSD.org>1996-10-01 00:13:54 +0000
commit75f88ba495d81b9fdb9d065a7abe2135bb28198c (patch)
treedc0e009bb6e8abfe1b3c14a635917c59c168246b /gnu/usr.bin/as/expr.c
parent8bd55788306b15f1b4d145a261dd7a2b21bae648 (diff)
Notes
Diffstat (limited to 'gnu/usr.bin/as/expr.c')
-rw-r--r--gnu/usr.bin/as/expr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/as/expr.c b/gnu/usr.bin/as/expr.c
index b504a4bdd817..e846d5656189 100644
--- a/gnu/usr.bin/as/expr.c
+++ b/gnu/usr.bin/as/expr.c
@@ -25,7 +25,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: expr.c,v 1.2 1993/11/03 00:51:28 paul Exp $";
+static char rcsid[] = "$Id: expr.c,v 1.3 1995/05/30 04:46:10 rgrimes Exp $";
#endif
#include <ctype.h>
@@ -126,7 +126,7 @@ register expressionS * expressionP;
/* likewise for the b's. xoxorich. */
if ((c == 'f' || c == 'b' || c == 'B')
&& (!*input_line_pointer ||
- (!strchr("+-.0123456789",*input_line_pointer) &&
+ (!strchr("+-.0123456789iInN",*input_line_pointer) &&
!strchr(EXP_CHARS,*input_line_pointer)))) {
maxdig = radix = 10;
too_many_digits = 11;