Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/time/strptime.c')
-rw-r--r--newlib/libc/time/strptime.c16
1 files changed, 4 insertions, 12 deletions
diff --git a/newlib/libc/time/strptime.c b/newlib/libc/time/strptime.c
index 127772460..929ad9211 100644
--- a/newlib/libc/time/strptime.c
+++ b/newlib/libc/time/strptime.c
@@ -33,9 +33,6 @@
#include <stddef.h>
#include <stdio.h>
#include <time.h>
-#include <string.h>
-#include <ctype.h>
-#include <stdlib.h>
static const char *abb_weekdays[] = {
"Sun",
@@ -78,7 +75,7 @@ static const char *abb_month[] = {
static const char *full_month[] = {
"January",
"February",
- "March",
+ "Mars",
"April",
"May",
"June",
@@ -249,12 +246,8 @@ _DEFUN (strptime, (buf, format, timeptr),
timeptr->tm_year = (ret * 100) - tm_year_base;
buf = s;
break;
- case 'c' : /* %a %b %e %H:%M:%S %Y */
- s = strptime (buf, "%a %b %e %H:%M:%S %Y", timeptr);
- if (s == NULL)
- return NULL;
- buf = s;
- break;
+ case 'c' :
+ abort ();
case 'D' : /* %m/%d/%y */
s = strptime (buf, "%m/%d/%y", timeptr);
if (s == NULL)
@@ -416,8 +409,7 @@ _DEFUN (strptime, (buf, format, timeptr),
buf = s;
break;
case 'Z' :
- /* Unsupported. Just ignore. */
- break;
+ abort ();
case '\0' :
--format;
/* FALLTHROUGH */