OSDN Git Service

2000-12-06 Jeff Johnston <jjohnstn@redhat.com>
authorjjohnstn <jjohnstn>
Thu, 7 Dec 2000 00:17:19 +0000 (00:17 +0000)
committerjjohnstn <jjohnstn>
Thu, 7 Dec 2000 00:17:19 +0000 (00:17 +0000)
        * libc/stdio/vfscanf.c: Fix typo for _NO_LONGDBL macro.

newlib/ChangeLog
newlib/libc/stdio/vfscanf.c

index e1e2f35..1e11e73 100644 (file)
@@ -1,5 +1,9 @@
 2000-12-06  Jeff Johnston  <jjohnstn@redhat.com>
 
+       * libc/stdio/vfscanf.c: Fix typo for _NO_LONGDBL macro.
+
+2000-12-06  Jeff Johnston  <jjohnstn@redhat.com>
+
        * libc/stdlib/Makefile.am: Added ldtoa.c to list of sources.
        * libc/stdlib/Makefile.in: Regenerated.
        * libc/stdio/floatio.h: Added suitable MAXEXP for long double.
index cc0f26d..623e744 100644 (file)
@@ -845,11 +845,11 @@ __svfscanf (fp, fmt0, ap)
                    exp_start = buf + sizeof (buf) - MAX_LONG_LEN - 1;
                  sprintf (exp_start, "e%ld", new_exp);
                }
-#ifdef _NO_LONG_DBL
+#ifdef _NO_LONGDBL
              res = atof (buf);
-#else  /* !_NO_LONG_DBL */
+#else  /* !_NO_LONGDBL */
              res = _strtold (buf, NULL);
-#endif /* !_NO_LONG_DBL */
+#endif /* !_NO_LONGDBL */
              if (flags & LONG)
                {
                  dp = va_arg (ap, double *);