diff options
author | Christopher Faylor <me@cgf.cx> | 2002-01-18 16:25:50 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-01-18 16:25:50 +0000 |
commit | 13baedeb741a4a07b23f033141741ddd8ae64e4d (patch) | |
tree | 148c0637066614771c6e225dd761d125711e76a0 /newlib/libc/include | |
parent | e47cd9cd5f353865d8704cbea5b64281e421982b (diff) | |
download | cygnal-13baedeb741a4a07b23f033141741ddd8ae64e4d.tar.gz cygnal-13baedeb741a4a07b23f033141741ddd8ae64e4d.tar.bz2 cygnal-13baedeb741a4a07b23f033141741ddd8ae64e4d.zip |
* libc/include/time.h: Add prototype for strptime for Cygwin.
Diffstat (limited to 'newlib/libc/include')
-rw-r--r-- | newlib/libc/include/time.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/newlib/libc/include/time.h b/newlib/libc/include/time.h index f8bb53eb1..1398ba4c6 100644 --- a/newlib/libc/include/time.h +++ b/newlib/libc/include/time.h @@ -62,6 +62,7 @@ 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; |