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:
authorJeff Johnston <jjohnstn@redhat.com>2002-04-10 00:55:55 +0400
committerJeff Johnston <jjohnstn@redhat.com>2002-04-10 00:55:55 +0400
commitdea7e25ca71e6a6c690f09a43b04f2858c1c348d (patch)
tree78a8bf5ac367f6a750e44c64c01358bcd0752021 /newlib/libc/include/time.h
parent464b3e80393a0f6e4187e9a3fa7dec611bc35076 (diff)
2002-04-09 Mark Bradshaw <bradshaw@staff.crosswalk.com>
* libc/include/time.h: Fix strptime declaration. * libc/time/Makefile.am: Add strptime.c. * libc/time/Makefile.in: Regenerated. * libc/time/strptime.c: New file.
Diffstat (limited to 'newlib/libc/include/time.h')
-rw-r--r--newlib/libc/include/time.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/include/time.h b/newlib/libc/include/time.h
index 1398ba4c6..fe43c285e 100644
--- a/newlib/libc/include/time.h
+++ b/newlib/libc/include/time.h
@@ -55,6 +55,7 @@ struct tm *_EXFUN(gmtime, (const time_t *_timer));
struct tm *_EXFUN(localtime,(const time_t *_timer));
#endif
size_t _EXFUN(strftime, (char *_s, size_t _maxsize, const char *_fmt, const struct tm *_t));
+char *_EXFUN(strptime, (const char *, const char *, struct tm *));
char *_EXFUN(asctime_r, (const struct tm *, char *));
char *_EXFUN(ctime_r, (const time_t *, char *));
@@ -62,7 +63,6 @@ struct tm *_EXFUN(gmtime_r, (const time_t *, struct tm *));
struct tm *_EXFUN(localtime_r, (const time_t *, struct tm *));
#ifdef __CYGWIN__
-char *_EXFUN(strptime, (const char *, const char *, struct tm *));
#ifndef __STRICT_ANSI__
extern __IMPORT time_t _timezone;
extern __IMPORT int _daylight;