aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio')
-rw-r--r--newlib/libc/stdio/vfscanf.c16
-rw-r--r--newlib/libc/stdio/vfwscanf.c9
2 files changed, 3 insertions, 22 deletions
diff --git a/newlib/libc/stdio/vfscanf.c b/newlib/libc/stdio/vfscanf.c
index 544d8db..c5fcae5 100644
--- a/newlib/libc/stdio/vfscanf.c
+++ b/newlib/libc/stdio/vfscanf.c
@@ -787,20 +787,8 @@ _DEFUN(__SVFSCANF_R, (rptr, fp, fmt0, ap),
}
continue;
- /*
- * Disgusting backwards compatibility hacks. XXX
- */
- case '\0': /* compat */
- _newlib_flockfile_exit (fp);
- return EOF;
-
- default: /* compat */
- if (isupper (c))
- flags |= LONG;
- c = CT_INT;
- ccfn = (u_long (*)CCFN_PARAMS)_strtol_r;
- base = 10;
- break;
+ default:
+ goto match_failure;
}
/*
diff --git a/newlib/libc/stdio/vfwscanf.c b/newlib/libc/stdio/vfwscanf.c
index 5b35601..fd4f1f9 100644
--- a/newlib/libc/stdio/vfwscanf.c
+++ b/newlib/libc/stdio/vfwscanf.c
@@ -740,14 +740,7 @@ _DEFUN(__SVFWSCANF_R, (rptr, fp, fmt0, ap),
}
continue;
- /*
- * Disgusting backwards compatibility hacks. XXX
- */
- case L'\0': /* compat */
- _newlib_flockfile_exit (fp);
- return EOF;
-
- default: /* compat */
+ default:
goto match_failure;
}