diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2004-04-02 01:05:43 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2004-04-02 01:05:43 +0000 |
commit | 59c9f5f586104615fe5acce7d7d506f26340d02f (patch) | |
tree | d5d20ae50c136f341546c3ba5ee69a78741c9595 /newlib/libc | |
parent | 38f4f02370cd42e2e4f8cc46e51013581d0973d0 (diff) | |
download | cygnal-59c9f5f586104615fe5acce7d7d506f26340d02f.tar.gz cygnal-59c9f5f586104615fe5acce7d7d506f26340d02f.tar.bz2 cygnal-59c9f5f586104615fe5acce7d7d506f26340d02f.zip |
2004-04-01 Artem B. Bityuckiy <abitytsky@softminecorp.com>
* libc/time/strptime.c: Add standard includes to avoid
warning messages at compilation time.
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/time/strptime.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/newlib/libc/time/strptime.c b/newlib/libc/time/strptime.c index 929ad9211..411e678a8 100644 --- a/newlib/libc/time/strptime.c +++ b/newlib/libc/time/strptime.c @@ -33,6 +33,9 @@ #include <stddef.h> #include <stdio.h> #include <time.h> +#include <string.h> +#include <ctype.h> +#include <stdlib.h> static const char *abb_weekdays[] = { "Sun", |